WPFComponents 1.0.1
dotnet add package WPFComponents --version 1.0.1
NuGet\Install-Package WPFComponents -Version 1.0.1
<PackageReference Include="WPFComponents" Version="1.0.1" />
paket add WPFComponents --version 1.0.1
#r "nuget: WPFComponents, 1.0.1"
// Install WPFComponents as a Cake Addin #addin nuget:?package=WPFComponents&version=1.0.1 // Install WPFComponents as a Cake Tool #tool nuget:?package=WPFComponents&version=1.0.1
WPFComponents
1 Introduction
The WPFComponents
library offers utility user controls for WPF projects.
2 API
2.1 ImageButton
A button that displays an icon instead of text.
The
ImageButton
can be enabled and disabled. When enabled theEnabledIconSource
will be used. TheDisabledIconSource
will be used otherwise.Also a
Tooltip
and theSize
of theImageButton
can be configured.
Accessible Interface:
public event RoutedEventHandler Click
public object Tooltip
public double Size
public ImageSource EnabledIconSource
public ImageSource DisabledIconSource
public ImageButton()
2.2 NumericUpDown
An input control for integer values.
Optionally a
Min
andMax
can be configured as well as aMaxLength
for the string length of the currentValue
.The value can be changed by either inserting a string into the control, by clicking the up or down buttons or by scrolling above the input field, which will change the
Value
byStepPerScroll
.
Accessible Interface:
public event ValueChangeHandler ValueChanged
public int Value
public int? Min
public int? Max
public uint? MaxLength
public uint StepPerScroll
public NumericUpDown()
public void SetValue
public void SetMin
public void SetMax
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net472 is compatible. net48 was computed. net481 was computed. |
-
.NETFramework 4.7.2
- No dependencies.
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.1 | 220 | 6/25/2023 |