Duraxium.Controls 3.0.0

dotnet add package Duraxium.Controls --version 3.0.0
NuGet\Install-Package Duraxium.Controls -Version 3.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="Duraxium.Controls" Version="3.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Duraxium.Controls --version 3.0.0
#r "nuget: Duraxium.Controls, 3.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 Duraxium.Controls as a Cake Addin
#addin nuget:?package=Duraxium.Controls&version=3.0.0

// Install Duraxium.Controls as a Cake Tool
#tool nuget:?package=Duraxium.Controls&version=3.0.0

Duraxium WPF IP TextBox Library

Version Notes
1.0.0 Origination.
2.0.0 Add HiddenTextBox. Improve IP textbox error timer (internal). Remove .NET 3.5 build.
3.0.0 Add VerticalLevelControl and HorizontalLevelControl.

Two deluxe IP address text boxes for WPF – one for IPv4 addresses and another for IPv6 addresses. Both text boxes prevent invalid IP addresses from being entered.

One "hidden" text box for WPF – text entered into the text box appears normally for a short time, then is replaced by dots to obscure the characters like a password box.

Two level controls for WPF – an alternative to a slider control. The level is displayed as a bar and a numeric value. The value (and bar length) are adjusted up or down using a button on either end of the control.

Ipv4TextBox

A custom WPF TextBox control that allows only dotted-decimal IP addresses to be entered. In addition to keyboard entry, clipboard copy, cut, and paste operations are supported. The control does not support dotted octal or hexadecimal addresses.

All standard TextBox properties are supported. The Text property is used to get or set the IP address text.

An additional dependency property, UseErrorFlash, is provided. With UseErrorFlash set to true (the default) the background of the control is flashed whenever someone tries to enter invalid text. You can disable this feature by setting UseErrorFlash to false.

Setting UpdateSourceTrigger to PropertyChanged is not recommended because your view-model will receive partial (invalid) IP addresses.

If the control is initialized using an invalid IP address, it will not throw an exception – it will display “0” instead.

Ipv6TextBox

A custom WPF TextBox control that allows only colon-hexadecimal IP addresses to be entered. In addition to keyboard entry, clipboard copy, cut, and paste operations are supported.

All standard TextBox properties are supported. The Text property is used to get or set the IP address text.

An additional dependency property, UseErrorFlash, is provided. With UseErrorFlash set to true (the default) the background of the control is flashed whenever someone tries to enter invalid text. You can disable this feature by setting UseErrorFlash to false.

Setting UpdateSourceTrigger to PropertyChanged is not recommended because your view-model will receive partial (invalid) IP addresses.

If the control is initialized using an invalid IP address, it will not throw an exception – it will display '0' instead.

AddressFactory

The static class AddressFactory can be used to convert an IPv4 or IPv6 address string to an IPAddress object. It provides one method:

public static IPAddress StringToAddress(string ipText)

Convert an IP address string to an IPAddress object.

ipText – the IPv4 or IPv6 address string

exceptions –

​ NullReferenceException – if ipText is null

​ FormatException – if ipText is an invalid IP address

The StringToAddress method is more restrictive than the IPAddress Parse and TryParse methods as it does not support dotted octal or hexadecimal address strings.

HiddenTextBox

A WPF text box that hides text shortly after it is entered. As text is entered, it is quickly replaced by dots to obscure the characters like a password box.

Most standard TextBox properties and events are supported. Although the text is shown as dots, the unobscured characters can be accessed via the Text dependency property.

Additional dependency properties –

HideTime – specifies the time, in milliseconds, before the entered text is displayed as dots (default = 750).

DigitsOnly – when set to True, allows only the digits 0-9 to be entered (default = False).

AllowSpaces – when set to True, allows space characters to be entered (default = True).

The clipboard Copy operation is permitted, but Cut and Paste are prohibited.

VerticalLevelControl

HorizontalLevelControl

WPF controls that are alternatives to a slider. The current level is displayed as a bar and a numeric value, with the level value being adjusted up or down using a button on either end of the control. The level controls are identical except for their visual orientation.

Most standard properties and events are supported except for the Background property, which has no effect.

Additional dependency properties –

Value – the current level value.

Minimum – the minimum level value.

Maximum – the maximum level value.

SmallChange – the level increase or decrease caused by clicking the increase or decrease button.

FractionalDigits – the number of level value digits displayed after the decimal point.

LevelBrush – the brush used as the foreground of the level indicator bar.

LevelBackground – the brush used as the background of the level indicator bar.

IncreaseButtonBrush – the brush used as the foreground of the increase button.

DecreaseButtonBrush – the brush used as the foreground of the decrease button.

ButtonBackground – the brush used as the background of the increase and decrease buttons.

UseLevelClick – when set to True, the value can be changed by clicking on the indicator bar (default = False).

ShowLevelValue – when set to True, the numeric level value is displayed on the indicator bar (default = True).

Product Compatible and additional computed target framework versions.
.NET Framework net40 is compatible.  net403 was computed.  net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  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.
  • .NETFramework 4.0

    • No dependencies.
  • .NETFramework 4.5

    • 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
3.0.0 122 9/17/2023
2.0.0 184 3/30/2023
1.0.0 391 4/18/2021

Full documentation is included in the NuGet package.