JamSoft.AvaloniaUI.Lcd 1.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package JamSoft.AvaloniaUI.Lcd --version 1.0.0
NuGet\Install-Package JamSoft.AvaloniaUI.Lcd -Version 1.0.0
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="JamSoft.AvaloniaUI.Lcd" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add JamSoft.AvaloniaUI.Lcd --version 1.0.0
#r "nuget: JamSoft.AvaloniaUI.Lcd, 1.0.0"
#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 JamSoft.AvaloniaUI.Lcd as a Cake Addin
#addin nuget:?package=JamSoft.AvaloniaUI.Lcd&version=1.0.0

// Install JamSoft.AvaloniaUI.Lcd as a Cake Tool
#tool nuget:?package=JamSoft.AvaloniaUI.Lcd&version=1.0.0

Introduction

This is a control providing a form of digital display for use within a .NET AvaloniaUI application.

How to use the control

BASIC

<lcd:LcdLabel Text="Default" />

COLOR THEMES

We're defining a basic default LCD label, nothing fancy.

<lcd:LcdLabel Text="Default Purple" 
              NumberOfCharactersPerLine="14" 
              ColorScheme="Purple"/>

Here we define a few of the available properties, We're increased the number of character from 10 (the default) to 14. And we have also specified the Purple color scheme.

ColorScheme Options

Default, Red, Green, Blue, Purple

MULTI LINE

<lcd:LcdLabel Text="Multi-line" NumberOfTextLines="2" NumberOfCharactersPerLine="5" />

Here we have configured the LCD control to have two lines of text, each with 5 characters.

DIFFERENT SIZE

<lcd:LcdLabel Text="{Binding Greeting}"
              DotMatrix="Dos5X7"
              NumberOfCharactersPerLine="24"
              LineSpacing="10"
              BorderSpace="10"
              PixelSize="Pix4X4" />

Here we have a large LCD display.

  • Text is data-bound to the view models Greeting property
  • DotMatrix is set to Dos5X7 (default Mat5X7)
  • NumberOfCharactersPerLine is set to 24 (default 10)
  • LineSpacing is set to 10 (default 2)
  • BorderSpace is set to 10 (default 3)
  • PixelSize is set to Pix4X4 (default Pix2X2)
DotMatrix Options

Mat5X7, Mat5X8, Mat7X9, Mat9X12, Hitachi, Hitachi2, Dos5X7

PixelSize Options

Pix1X1, Pix2X2, Pix3X3, Pix4X4, Pix5X5, Pix6X6, Pix7X7, Pix8X8, Pix9X9, Pix10X10, Pix11X11, Pix12X12, Pix13X13, Pix14X14, Pix15X15, Pix16X16, Custom

Properties

ColorScheme

PixelSize

DotMatrix

PixelSpacing

CharacterSpacing

LineSpacing

BorderSpace

NumberOfTextLines

NumberOfCharactersPerLine

PixelOnColor

PixelOffColor

LcdBackgroundColor

PixelWidth

PixelHeight

Text

HalfIntensity

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows 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.2.0 87 3/22/2024
1.1.0 231 2/18/2023
1.0.2 217 2/15/2023
1.0.1 219 2/13/2023
1.0.0 223 2/12/2023