UpdateFind() public method

public UpdateFind ( string findText, bool highLightFirstMatch, bool matchCase, bool useRegex ) : void
findText string
highLightFirstMatch bool
matchCase bool
useRegex bool
return void
Example #1
0
 private void Find_Changed(object sender, SelectionChangedEventArgs e)
 {
     if (e.AddedItems.Count != 0)
     {
         mainWindow.UpdateFind(e.AddedItems[0].ToString(), true, this.MatchCase.IsChecked ?? true, this.RegexFind.IsChecked ?? true);
     }
 }