Exemplo n.º 1
0
 private void btnSave_Click(object sender, RoutedEventArgs e)
 {
     AreasAndConditions newAAC = new AreasAndConditions(txtBoxName.Text);
     AACList.Add(newAAC);
     EditAsAndCs EAAC = new EditAsAndCs(newAAC);
     EAAC.ShowDialog();
     Close();
 }
Exemplo n.º 2
0
        private void btnOverEdit_Click(object sender, RoutedEventArgs e)
        {
            EditAsAndCs eaas = new EditAsAndCs(AandC);

            eaas.ShowDialog();
            AandC.sortAreasAndConditions();
            ResetComboBoxes();
        }
Exemplo n.º 3
0
        private void btnSave_Click(object sender, RoutedEventArgs e)
        {
            AreasAndConditions newAAC = new AreasAndConditions(txtBoxName.Text);

            AACList.Add(newAAC);
            EditAsAndCs EAAC = new EditAsAndCs(newAAC);

            EAAC.ShowDialog();
            Close();
        }
Exemplo n.º 4
0
 private void btnOverEdit_Click(object sender, RoutedEventArgs e)
 {
     EditAsAndCs eaas = new EditAsAndCs(AandC);
     eaas.ShowDialog();
     AandC.sortAreasAndConditions();
     ResetComboBoxes();
 }