In This Article

DataGridInt16Column Class

Represents a data-bound column for use in a DataGrid that utilizes the Int16EditBox control.

public class DataGridInt16Column : DataGridPartEditBoxColumnBase<short?>
Inheritance:
object DataGridColumn DataGridBoundColumn DataGridBoundColumnBase DataGridPartEditBoxColumnBase<short?> object

Constructors

DataGridInt16Column()

Initializes an instance of the DataGridInt16Column class.

public DataGridInt16Column()

Properties

DefaultValue

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

public short DefaultValue { get; set; }

Property Value

short:

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 short LargeChange { get; set; }

Property Value

short:

The large change value. The default value is 5.

Maximum

Gets or sets the highest possible value.

public short Maximum { get; set; }

Property Value

short:

The highest possible value.

Minimum

Gets or sets the lowest possible value.

public short Minimum { get; set; }

Property Value

short:

The lowest possible value.

PickerKind

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

public Int16EditBoxPickerKind PickerKind { get; set; }

Property Value

Int16EditBoxPickerKind:

An Int16EditBoxPickerKind 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.

SmallChange

Gets or sets the small change value.

public short SmallChange { get; set; }

Property Value

short:

The small change value. The default value is 1.

Methods

ApplyStandardValues(FrameworkElement)

Applies standard values to the specified target element.

protected override void ApplyStandardValues(FrameworkElement targetElement)
Parameter Type Description
targetElement FrameworkElement

The target element.

GetEditBoxType()

Gets the type of the associated PartEditBoxBase-derived control.

protected override Type GetEditBoxType()

Returns

Type:

The type of the associated PartEditBoxBase-derived control.

Fields

DefaultValueProperty

Identifies the DefaultValue dependency property. This field is read-only.

public static readonly DependencyProperty DefaultValueProperty

FormatProperty

Identifies the Format dependency property. This field is read-only.

public static readonly DependencyProperty FormatProperty

LargeChangeProperty

Identifies the LargeChange dependency property. This field is read-only.

public static readonly DependencyProperty LargeChangeProperty

MaximumProperty

Identifies the Maximum dependency property. This field is read-only.

public static readonly DependencyProperty MaximumProperty

MinimumProperty

Identifies the Minimum dependency property. This field is read-only.

public static readonly DependencyProperty MinimumProperty

PickerKindProperty

Identifies the PickerKind dependency property. This field is read-only.

public static readonly DependencyProperty PickerKindProperty

SmallChangeProperty

Identifies the SmallChange dependency property. This field is read-only.

public static readonly DependencyProperty SmallChangeProperty

Inherited Members