1 write to _findToolbar
PresentationFramework (1)
System\Windows\Controls\DocumentViewer.cs (1)
2157
_findToolbar
= new FindToolBar();
16 references to _findToolbar
PresentationFramework (16)
System\Windows\Controls\DocumentViewer.cs (16)
892
if (
_findToolbar
!= null)
894
_findToolbar
.DocumentLoaded = (Document != null) ? true : false;
2154
if(
_findToolbar
== null )
2160
_findToolbar
.FindClicked += new EventHandler(OnFindInvoked);
2163
_findToolbar
.DocumentLoaded = (Document != null) ? true : false;
2169
if (!
_findToolbar
.IsAncestorOf(this))
2171
((IAddChild)findHost).AddChild(
_findToolbar
);
2187
if (
_findToolbar
!= null && TextEditor != null)
2189
ITextRange findResult = Find(
_findToolbar
);
2204
_findToolbar
.GoToTextBox();
2211
string messageString =
_findToolbar
.SearchUp ?
2218
_findToolbar
.SearchText);
2247
if (
_findToolbar
!= null)
2249
_findToolbar
.GoToTextBox();
2261
if (
_findToolbar
== null || Document == null)
2274
_findToolbar
.SearchUp = ((e.KeyboardDevice.Modifiers & ModifierKeys.Shift) == ModifierKeys.Shift);