Table of Contents

Class PinBoxTextChangedEventArgs

Namespace
Nova.Avalonia.UI.Controls
Assembly
Nova.Avalonia.UI.dll

Event arguments for when the PinBox text changes.

public class PinBoxTextChangedEventArgs : EventArgs
Inheritance
PinBoxTextChangedEventArgs
Inherited Members

Constructors

PinBoxTextChangedEventArgs(string, string)

Initializes a new instance of PinBoxTextChangedEventArgs.

public PinBoxTextChangedEventArgs(string oldText, string newText)

Parameters

oldText string

The previous text value.

newText string

The new text value.

Properties

NewText

Gets the new text value.

public string NewText { get; }

Property Value

string

OldText

Gets the previous text value.

public string OldText { get; }

Property Value

string