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 class.

public DataGridInt16Column()

Properties

DefaultValue

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

public short DefaultValue { get; set; }

Property Value

short:

The default value is 0.

Format

The number format string.

public string Format { get; set; }

Property Value

string:

The default value is "D".

HasPopup

Indicates whether the control has a popup available.

public bool HasPopup { get; set; }

Property Value

bool:

true if the control has a popup available; otherwise false. The default value is false.

IsArrowKeyPartNavigationEnabled

Indicates whether the left/right arrow keys can be used to move between and select editable parts.

public bool IsArrowKeyPartNavigationEnabled { get; set; }

Property Value

bool:

true if the left/right arrow keys can be used to move between and select editable parts; otherwise false. The default value is false.

LargeChange

The large change value.

public short LargeChange { get; set; }

Property Value

short:

The default value is 5.

Maximum

The highest possible value.

public short Maximum { get; set; }

Property Value

short

Minimum

The lowest possible value.

public short Minimum { get; set; }

Property Value

short

PickerKind

An Int16EditBoxPickerKind indicating the pre-defined Style to apply to the picker used within the popup.

public Int16EditBoxPickerKind PickerKind { get; set; }

Property Value

Int16EditBoxPickerKind:

The default value is Calculator.

SmallChange

The small change value.

public short SmallChange { get; set; }

Property Value

short:

The default value is 1.

SpinnerVisibility

A value indicating if and when the control has a spinner available.

public SpinnerVisibility SpinnerVisibility { get; set; }

Property Value

SpinnerVisibility:

The default value is VisibleWhenActive.

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()

The type of the associated PartEditBoxBase-derived control.

protected override Type GetEditBoxType()

Returns

Type

Fields

DefaultValueProperty

Defines the DefaultValue property.

public static readonly DependencyProperty DefaultValueProperty

FormatProperty

Defines the Format property.

public static readonly DependencyProperty FormatProperty

LargeChangeProperty

Defines the LargeChange property.

public static readonly DependencyProperty LargeChangeProperty

MaximumProperty

Defines the Maximum property.

public static readonly DependencyProperty MaximumProperty

MinimumProperty

Defines the Minimum property.

public static readonly DependencyProperty MinimumProperty

PickerKindProperty

Defines the PickerKind property.

public static readonly DependencyProperty PickerKindProperty

SmallChangeProperty

Defines the SmallChange property.

public static readonly DependencyProperty SmallChangeProperty

Inherited Members

Extension Methods