Esempio n. 1
0
 public void ShowUserOptions()
 {
     OptionsRow.Height     = new GridLength(0);
     UserOptionsRow.Height = new GridLength(RowHeight);
     _status = Status.UserOptions;
     OptionsContinueBtn.Focus();
 }
Esempio n. 2
0
 public void ShowOpenDrawer()
 {
     OptionsRow.Height    = new GridLength(0);
     OpenDrawerRow.Height = new GridLength(RowHeight);
     _status = Status.OpenDrawer;
     OptionsContinueBtn.Focus();
     if (batch != null)
     {
         OpenDrawerGrd.DataContext = batch;
     }
 }
Esempio n. 3
0
        private void DoLogonClick(object sender, RoutedEventArgs e)
        {
            OptionsContinueBtn.Focus();
            try
            {
                DialogResult = true;

                Close();
            }
            catch
            {
            }
        }