1 write to _findToolbar
PresentationFramework (1)
System\Windows\Controls\DocumentViewer.cs (1)
2099
_findToolbar
= new FindToolBar();
15 references to _findToolbar
PresentationFramework (15)
System\Windows\Controls\DocumentViewer.cs (15)
877
if (
_findToolbar
!= null)
879
_findToolbar
.DocumentLoaded = (Document != null) ? true : false;
2096
if(
_findToolbar
== null )
2102
_findToolbar
.FindClicked += new EventHandler(OnFindInvoked);
2105
_findToolbar
.DocumentLoaded = (Document != null) ? true : false;
2111
if (!
_findToolbar
.IsAncestorOf(this))
2113
((IAddChild)findHost).AddChild(
_findToolbar
);
2129
if (
_findToolbar
!= null && TextEditor != null)
2131
ITextRange findResult = Find(
_findToolbar
);
2143
_findToolbar
.GoToTextBox();
2150
string messageString =
_findToolbar
.SearchUp ?
2157
_findToolbar
.SearchText);
2186
_findToolbar
?.GoToTextBox();
2197
if (
_findToolbar
== null || Document == null)
2210
_findToolbar
.SearchUp = ((e.KeyboardDevice.Modifiers & ModifierKeys.Shift) == ModifierKeys.Shift);