Exemple #1
0
 private void Button_TableData_Click(object sender, RoutedEventArgs e)
 {
     if (tableDataWindow == null)
     {
         tableDataWindow         = new TableDataWindow();
         tableDataWindow.Closed += tableDataWindow_Closed;
         tableDataWindow.Show();
     }
 }
Exemple #2
0
 private void tableDataWindow_Closed(object sender, EventArgs e)
 {
     tableDataWindow = null;
 }