12 references to Text
PresentationCore (1)
Core\CSharp\System\Windows\Input\AccessKeyManager.cs (1)
344
string text = e.
Text
;
PresentationFramework (11)
src\Framework\System\Windows\Controls\DataGrid.cs (2)
5444
if (!e.Handled && !String.IsNullOrEmpty(e.
Text
) && IsTextSearchEnabled)
5467
instance.DoSearch(e.
Text
);
src\Framework\System\Windows\Controls\DataGridHelper.cs (1)
734
string text = textArgs.
Text
;
src\Framework\System\Windows\Controls\DataGridHyperlinkColumn.cs (1)
231
string inputText = textArgs.
Text
;
src\Framework\System\Windows\Controls\DataGridTextColumn.cs (1)
180
string inputText = ConvertTextForEdit(textArgs.
Text
);
src\Framework\System\Windows\Controls\ItemsControl.cs (2)
1682
if (!String.IsNullOrEmpty(e.
Text
) && IsTextSearchEnabled &&
1689
instance.DoSearch(e.
Text
);
src\Framework\System\Windows\Controls\Menu.cs (1)
265
e.
Text
== " " &&
src\Framework\System\windows\Documents\TextEditorTyping.cs (3)
385
(e.
Text
== null || e.
Text
.Length == 0))
416
TextEditorTyping.ScheduleInput(This, new TextInputItem(This, e.
Text
, /*isInsertKeyToggled:*/keyboard != null ? keyboard.IsKeyToggled(Key.Insert) : false));