In This Article

BytePropertyEditor Class

Represents a PropertyEditor for editing a Byte value with a ByteEditBox.

public class BytePropertyEditor : PartEditBoxPropertyEditorBase
Inheritance:
object ObservableObjectBase PropertyEditor PropertyEditorBase PartEditBoxPropertyEditorBase object
Derived:
NullableBytePropertyEditor

Constructors

BytePropertyEditor()

Initializes an instance of the BytePropertyEditor class.

public BytePropertyEditor()

BytePropertyEditor(Type)

Initializes an instance of the BytePropertyEditor class.

protected BytePropertyEditor(Type propertyType)
Parameter Type Description
propertyType Type

The type of the property.

Properties

DefaultValue

Gets or sets the value to set when incrementing/decrementing from a null value.

public byte DefaultValue { get; set; }

Property Value

byte:

The value to set when incrementing/decrementing from a null value. The default value is 0.

Format

Gets or sets the number format string.

public string Format { get; set; }

Property Value

string:

The number format string. The default value is "D".

LargeChange

Gets or sets the large change value.

public byte LargeChange { get; set; }

Property Value

byte:

The large change value. The default value is 5.

Maximum

Gets or sets the highest possible value.

public byte Maximum { get; set; }

Property Value

byte:

The highest possible value.

Minimum

Gets or sets the lowest possible value.

public byte Minimum { get; set; }

Property Value

byte:

The lowest possible value.

PickerKind

Gets or sets a ByteEditBoxPickerKind indicating the pre-defined Style to apply to the picker used within the popup.

public ByteEditBoxPickerKind PickerKind { get; set; }

Property Value

ByteEditBoxPickerKind:

A ByteEditBoxPickerKind indicating the pre-defined Style to apply to the picker used within the popup. The default value is Calculator in WPF and Default in UWP.

PredefinedValueTemplateKey

Gets the resource key that references a pre-defined DataTemplate within internal resources to use for editing the property value.

protected override object PredefinedValueTemplateKey { get; }

Property Value

object:

The resource key that references a pre-defined DataTemplate within internal resources to use for editing the property value.

SmallChange

Gets or sets the small change value.

public byte SmallChange { get; set; }

Property Value

byte:

The small change value. The default value is 1.

Inherited Members