1 write to _findToolbar
PresentationFramework (1)
System\Windows\Controls\DocumentViewer.cs (1)
2095
_findToolbar
= new FindToolBar();
14 references to _findToolbar
PresentationFramework (14)
System\Windows\Controls\DocumentViewer.cs (14)
876
_findToolbar
?.DocumentLoaded = (Document != null) ? true : false;
2092
if(
_findToolbar
== null )
2098
_findToolbar
.FindClicked += new EventHandler(OnFindInvoked);
2101
_findToolbar
.DocumentLoaded = (Document != null) ? true : false;
2107
if (!
_findToolbar
.IsAncestorOf(this))
2109
((IAddChild)findHost).AddChild(
_findToolbar
);
2125
if (
_findToolbar
!= null && TextEditor != null)
2127
ITextRange findResult = Find(
_findToolbar
);
2139
_findToolbar
.GoToTextBox();
2146
string messageString =
_findToolbar
.SearchUp ?
2153
_findToolbar
.SearchText);
2182
_findToolbar
?.GoToTextBox();
2193
if (
_findToolbar
== null || Document == null)
2206
_findToolbar
.SearchUp = ((e.KeyboardDevice.Modifiers & ModifierKeys.Shift) == ModifierKeys.Shift);