Barcoder.WPF 0.0.0.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package Barcoder.WPF --version 0.0.0.1
NuGet\Install-Package Barcoder.WPF -Version 0.0.0.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Barcoder.WPF" Version="0.0.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Barcoder.WPF --version 0.0.0.1
#r "nuget: Barcoder.WPF, 0.0.0.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Barcoder.WPF as a Cake Addin
#addin nuget:?package=Barcoder.WPF&version=0.0.0.1

// Install Barcoder.WPF as a Cake Tool
#tool nuget:?package=Barcoder.WPF&version=0.0.0.1

Barcoder.WPF

WPF Component for Library Barcoder

Install

Install NuGet-Package Barcoder.WPF NuGet Status

Install-Package Barcoder.WPF

Supported Barcode Types:

  • DataMatrix (ECC 200)
  • Code128
  • 2 of 5
  • Codabar
  • Code 39
  • Code 93
  • EAN 8
  • EAN 13
  • QR Code

Usage - WPF Control

Add resource to the file App.xaml:

<ResourceDictionary Source="pack://application:,,,/Barcoder.WPF;component/Theme.xaml" />

Example MainWindow:

<Window x:Class="Barcode.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:c="clr-namespace:Barcoder.WPF;assembly=Barcoder.WPF"
        mc:Ignorable="d" Title="MainWindow" Height="250" Width="500">
    <StackPanel Orientation="Horizontal">
        <c:Code128 Value="123599" ModuleWidth="1" Height="50" Foreground="Red" IncludeChecksum="True" />
        <c:DataMatrix Value="1234599" ModuleSize="8" Foreground="Green" />
    </StackPanel>
</Window>
Product Compatible and additional computed target framework versions.
.NET Framework net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.6 448 1/23/2023
1.0.5 308 12/13/2022
1.0.4 294 12/7/2022
1.0.3 278 12/7/2022
1.0.2 288 12/6/2022
1.0.1 325 11/29/2022
1.0.0 317 11/24/2022
0.0.0.7 733 7/18/2019
0.0.0.6 532 7/17/2019
0.0.0.4 583 7/10/2019
0.0.0.3 574 7/10/2019
0.0.0.2 548 7/5/2019
0.0.0.1 533 7/5/2019

Init