C# Class WinRTXamlToolkit.Controls.UpDownTextBox

Primitive control - TextBox with UpPressed and DownPressed events for use in a NumericUpDown to make up and down keys work to increment and decrement the values.
Inheritance: Windows.UI.Xaml.Controls.TextBox
ファイルを表示 Open project: xyzzer/WinRTXamlToolkit Class Usage Examples

Protected Methods

Method Description
OnKeyDown ( KeyRoutedEventArgs e ) : void

Called before the KeyDown event occurs.

Private Methods

Method Description
RaiseDownPressed ( ) : void

Raises DownPressed event.

RaiseUpPressed ( ) : void

Raises UpPressed event.

Method Details

OnKeyDown() protected method

Called before the KeyDown event occurs.
protected OnKeyDown ( KeyRoutedEventArgs e ) : void
e Windows.UI.Xaml.Input.KeyRoutedEventArgs The data for the event.
return void