1 write to _findToolbar
PresentationFramework (1)
System\Windows\Controls\DocumentViewer.cs (1)
2098
_findToolbar
= new FindToolBar();
15 references to _findToolbar
PresentationFramework (15)
System\Windows\Controls\DocumentViewer.cs (15)
876
if (
_findToolbar
!= null)
878
_findToolbar
.DocumentLoaded = (Document != null) ? true : false;
2095
if(
_findToolbar
== null )
2101
_findToolbar
.FindClicked += new EventHandler(OnFindInvoked);
2104
_findToolbar
.DocumentLoaded = (Document != null) ? true : false;
2110
if (!
_findToolbar
.IsAncestorOf(this))
2112
((IAddChild)findHost).AddChild(
_findToolbar
);
2128
if (
_findToolbar
!= null && TextEditor != null)
2130
ITextRange findResult = Find(
_findToolbar
);
2142
_findToolbar
.GoToTextBox();
2149
string messageString =
_findToolbar
.SearchUp ?
2156
_findToolbar
.SearchText);
2185
_findToolbar
?.GoToTextBox();
2196
if (
_findToolbar
== null || Document == null)
2209
_findToolbar
.SearchUp = ((e.KeyboardDevice.Modifiers & ModifierKeys.Shift) == ModifierKeys.Shift);