1 write to _findToolbar
PresentationFramework (1)
System\Windows\Controls\DocumentViewer.cs (1)
2145
_findToolbar
= new FindToolBar();
16 references to _findToolbar
PresentationFramework (16)
System\Windows\Controls\DocumentViewer.cs (16)
880
if (
_findToolbar
!= null)
882
_findToolbar
.DocumentLoaded = (Document != null) ? true : false;
2142
if(
_findToolbar
== null )
2148
_findToolbar
.FindClicked += new EventHandler(OnFindInvoked);
2151
_findToolbar
.DocumentLoaded = (Document != null) ? true : false;
2157
if (!
_findToolbar
.IsAncestorOf(this))
2159
((IAddChild)findHost).AddChild(
_findToolbar
);
2175
if (
_findToolbar
!= null && TextEditor != null)
2177
ITextRange findResult = Find(
_findToolbar
);
2192
_findToolbar
.GoToTextBox();
2199
string messageString =
_findToolbar
.SearchUp ?
2206
_findToolbar
.SearchText);
2235
if (
_findToolbar
!= null)
2237
_findToolbar
.GoToTextBox();
2249
if (
_findToolbar
== null || Document == null)
2262
_findToolbar
.SearchUp = ((e.KeyboardDevice.Modifiers & ModifierKeys.Shift) == ModifierKeys.Shift);