Example #1
0
 public void LoadAction()
 {
     TryCatch.ShowMassage(() =>
     {
         LoadEvent();
     });
 }
Example #2
0
 public void BtnDeleteAction()
 {
     TryCatch.ShowMassage(() =>
     {
         DeleteEvent();
     });
 }
Example #3
0
 public void BtnReturnAction(object view)
 {
     TryCatch.ShowMassage(() =>
     {
         ((Window)view).Close();
     });
 }
Example #4
0
 public void BtnRegistrationAction()
 {
     TryCatch.ShowMassage(() =>
     {
         SaveEvent();
     });
 }
Example #5
0
 public void BtnNewAction()
 {
     TryCatch.ShowMassage(() =>
     {
         ChangeNewDataEvent();
     });
 }
Example #6
0
 public void SearchAction()
 {
     TryCatch.ShowMassage(() =>
     {
         SetSearchResultEntitys();
     });
 }
Example #7
0
 public void DataGridMouseDoubleClickAction()
 {
     TryCatch.ShowMassage(() =>
     {
         ChangeEditData();
     });
 }
Example #8
0
 public void BtnEndAction()
 {
     TryCatch.ShowMassage(() =>
     {
         Application.Current.Shutdown();
     });
 }
Example #9
0
 public void BtnOpenMstAccountAction()
 {
     TryCatch.ShowMassage(() =>
     {
         OpenMstAccountEvent();
     });
 }
Example #10
0
 private void MenuItemMstAccount_Click(object sender, System.Windows.RoutedEventArgs e)
 {
     TryCatch.ShowMassage(() =>
     {
         OpenMstAccountEvent();
     });
 }
Example #11
0
 private void MenuItemClose_Click(object sender, RoutedEventArgs e)
 {
     TryCatch.ShowMassage(() =>
     {
         Application.Current.Shutdown();
     });
 }
Example #12
0
 private void MenuItemStartupScreen_Click(object sender, RoutedEventArgs e)
 {
     TryCatch.ShowMassage(() =>
     {
         OpenMenuEvent();
     });
 }
Example #13
0
 private void CancelAction()
 {
     TryCatch.ShowMassage(() =>
     {
         Application.Current.Shutdown();
     });
 }
Example #14
0
 public void BtnLoginAction()
 {
     TryCatch.ShowMassage(() =>
     {
         LoginEvent();
     });
 }
Example #15
0
 private void BtnDeleteGridDetailRowAction(object entity)
 {
     TryCatch.ShowMassage(() =>
     {
         DeleteGridDetailRow(entity);
     });
 }
Example #16
0
 private void BtnAddGridDetailRowAction()
 {
     TryCatch.ShowMassage(() =>
     {
         AddGridDetailRow();
     });
 }