1 write to KeyChar
System.Windows.Forms (1)
System\Windows\Forms\Input\KeyPressEventArgs.cs (1)
16
KeyChar
= keyChar;
23 references to KeyChar
System.Windows.Forms (22)
System\Windows\Forms\Control.cs (4)
8939
newWParam = kpe.
KeyChar
;
8951
char preEventCharacter = kpe.
KeyChar
;
8955
newWParam = kpe.
KeyChar
== preEventCharacter ? m.WParamInternal : (WPARAM)kpe.
KeyChar
;
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (2)
2461
if (!e.Handled && (e.
KeyChar
== (char)(int)Keys.Return || e.
KeyChar
== (char)(int)Keys.Escape)
System\Windows\Forms\Controls\ListBoxes\CheckedListBox.cs (1)
779
if (e.
KeyChar
== ' ' && SelectionMode != SelectionMode.None)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (3)
2546
e.Handled = FilterReadOnlyEditKeyPress(e.
KeyChar
);
2973
if (WillFilterKeyPress(e.
KeyChar
))
2976
FilterKeyPress(e.
KeyChar
);
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.GridViewTextBox.cs (1)
155
if (!IsInputChar(e.
KeyChar
))
System\Windows\Forms\Controls\TextBox\MaskedTextBox.cs (2)
1968
if (!char.IsLetter(e.
KeyChar
))
1981
if (PlaceChar(e.
KeyChar
, selectionStart, selectionLen, IsOverwriteMode, out MaskedTextResultHint hint))
System\Windows\Forms\Controls\TreeView\TreeView.cs (1)
2300
if (e.
KeyChar
== ' ')
System\Windows\Forms\Controls\UpDown\DomainUpDown.cs (1)
335
char[] character = [e.
KeyChar
];
System\Windows\Forms\Controls\UpDown\NumericUpDown.cs (7)
455
string keyInput = e.
KeyChar
.ToString();
457
if (char.IsDigit(e.
KeyChar
))
465
else if (e.
KeyChar
== '\b')
469
else if (Hexadecimal && ((e.
KeyChar
>= 'a' && e.
KeyChar
<= 'f') || (e.
KeyChar
>= 'A' && e.
KeyChar
<= 'F')))
System.Windows.Forms.Design (1)
System\ComponentModel\Design\ObjectSelectorEditor.Selector.cs (1)
117
switch (e.
KeyChar
)