Beispiel #1
0
 public VoucherEmition()
 {
     InitializeComponent();
     VoucherSystem.Load();
     UC_DataGrid_Vouchers.ItemsSource = VoucherSystem.Vouchers;
     //UC_DataGrid_Vouchers.RowEditEnding += UC_DataGrid_Vouchers_RowEditEnding;
     UC_DataGrid_Vouchers.CellEditEnding += UC_DataGrid_Vouchers_CellEditEnding;
 }
Beispiel #2
0
 private void UC_DataGrid_Vouchers_RowEditEnding(object sender, DataGridRowEditEndingEventArgs e)
 {
     VoucherSystem.Save();
 }