Add barcodes to your Windows Phone applications. dBarcode.SL are components for Silverlight that allow barcode images to be created within the developer’s own Windows Phone application. A barcode image may be displayed on screen, saved as a picture or a “pattern string” used by the developer to draw the bars. dBarcode.SL includes a sample project with source code in C#. The sample projects may be compiled in Visual Studio 2010 and may be deployed to Windows Phones or emulators. dBarcode.SL - DataMatrix supports DataMatrix (square or rectangular) barcode types.
| Add to Cart | $ 807.53 | 1 Developer License | Download (2.8 MB) |
All sales are made on our standard Terms and Conditions and subject to our Return Policy.
One software license is required per developer.
Run-time royalty free.
| Read the dBarcode.SL help file | (142 KB) |
| Download the dBarcode.SL for Windows Phone V1.21 evaluation on to your computer - Limited Output | (2.8 MB) |

What's new in dBarcode.SL V1.2?
dBarcode.SL for Windows Phone - A range of class DLLs designed for creating barcodes in Windows Phone projects using Silverlight and C# or VB. dBarcode.SL components for Windows Phone are components for Silverlight that allow barcode images to be created within the developer’s own Windows Phone application. A barcode image may be displayed on screen or a “pattern string” used by the developer to draw the bars.
Displaying a barcode on a page
A barcode may be displayed on a page by placing a empty Image on the page at the position the barcode is required. Then the component is provided with the relevant data, and the Barcode(rec) method called using the a rectangle the size of the empty Image as the only parameter. A bitmap image is returned and may be used to as the Source for the Image.
For example:
private void DoBarcode() C#
{
int left,top,height,width;
// set these to specify position of barcode
....
Rect rec;
wp.CodeTypeValue=0;
wp.Caption="1234";
rec=new Rect(left, top,width,height
WriteableBitmap bm=wp.Barcode(rec);
if (bm==null)
image1.source=null;
else {
image1.Width=wp.ImageWidth;
image1.Height=wp.ImageHeight;
image1.source=bm;
}
}
All components allow the barcode image to be created either by filling the size of the rectangle specified, or by specifying a size in pixels for the smallest element.
Products available:
These components require Visual Studio 2010 and the Windows Phone developer toolkit for building products.
* The 1D Universal component supports Code 39, Code 93, Code 128, EAN-8, EAN-13, EAN/UCC-14, GS1/EAN/UCC-128, Codabar, Standard 2 of 5, Interleaved 2 of 5, Matrix 2 of 5, ISBN, ISSN, ISMN, MSI, Plessey, SSCC, Telepen, UPC-A, UPC-E and the linear variants of GS1-Databar, Australia Post, China Post, Deutschepost, Italia Post, Fourstate, Infomail Barcode A, Intelligent Mail, Japan Post, Korean PA, Planet, Postnet and RM4CC.
** The QR component does not support Kanji mode symbols.
Each product includes a sample project with source code C#. The sample projects may be compiled in Visual Studio 2010 and may be deployed to Windows Phones or emulators.
Disk Space Required: 10MB
Software Required: Windows Phone SDK version 7.1 or later