Open() 공개 메소드

Opens the an existing search panel.
public Open ( ) : void
리턴 void
예제 #1
0
 void ExecuteFind(object sender, ExecutedRoutedEventArgs e)
 {
     panel.Open(false);
     if (!(TextArea.Selection.IsEmpty || TextArea.Selection.IsMultiline))
     {
         panel.SearchPattern = TextArea.Selection.GetText();
     }
     Dispatcher.CurrentDispatcher.BeginInvoke(DispatcherPriority.Input, (Action) delegate { panel.Reactivate(); });
 }
예제 #2
0
 public void Open()
 {
     panel.Open();
     panel.SearchPattern = TextArea.Selection.GetText();
     Dispatcher.CurrentDispatcher.BeginInvoke(DispatcherPriority.Input, (Action) delegate { panel.Reactivate(); });
 }
예제 #3
0
 void ExecuteFind(object sender, ExecutedRoutedEventArgs e)
 {
     panel.Open();
     panel.SearchPattern = TextArea.Selection.GetText();
     Dispatcher.CurrentDispatcher.BeginInvoke(DispatcherPriority.Input, (Action) delegate { panel.Reactivate(); });
 }