Close() public method

Closes the SearchPanel.
public Close ( ) : void
return void
Exemplo n.º 1
0
 void ExecuteCloseSearchPanel(object sender, ExecutedRoutedEventArgs e)
 {
     if (!panel.IsClosed)
     {
         panel.Close();
         e.Handled = true;
     }
 }
Exemplo n.º 2
0
 void ExecuteCloseSearchPanel(object sender, ExecutedRoutedEventArgs e)
 {
     if (panel != null)
     {
         panel.Close();
     }
     panel = null;
 }
Exemplo n.º 3
0
 void ExecuteCloseSearchPanel(object sender, ExecutedRoutedEventArgs e)
 {
     panel.Close();
 }