FindNext() public method

Moves to the next occurrence in the file.
public FindNext ( ) : void
return void
コード例 #1
0
 void ExecuteFindNext(object sender, ExecutedRoutedEventArgs e)
 {
     if (panel != null)
     {
         panel.FindNext();
     }
 }
コード例 #2
0
 void ExecuteFindNext(object sender, ExecutedRoutedEventArgs e)
 {
     if (!panel.IsClosed)
     {
         panel.FindNext();
         e.Handled = true;
     }
 }