1 write to _findToolbar
PresentationFramework (1)
src\Framework\System\Windows\Controls\DocumentViewer.cs (1)
2207
_findToolbar
= new FindToolBar();
16 references to _findToolbar
PresentationFramework (16)
src\Framework\System\Windows\Controls\DocumentViewer.cs (16)
911
if (
_findToolbar
!= null)
913
_findToolbar
.DocumentLoaded = (Document != null) ? true : false;
2204
if(
_findToolbar
== null )
2210
_findToolbar
.FindClicked += new EventHandler(OnFindInvoked);
2213
_findToolbar
.DocumentLoaded = (Document != null) ? true : false;
2219
if (!
_findToolbar
.IsAncestorOf(this))
2221
((IAddChild)findHost).AddChild(
_findToolbar
);
2242
if (
_findToolbar
!= null && TextEditor != null)
2244
ITextRange findResult = Find(
_findToolbar
);
2259
_findToolbar
.GoToTextBox();
2266
string messageString =
_findToolbar
.SearchUp ?
2273
_findToolbar
.SearchText);
2307
if (
_findToolbar
!= null)
2309
_findToolbar
.GoToTextBox();
2326
if (
_findToolbar
== null || Document == null)
2339
_findToolbar
.SearchUp = ((e.KeyboardDevice.Modifiers & ModifierKeys.Shift) == ModifierKeys.Shift);