// F3ボタン(集計) クリック public override void btnF3_Click(object sender, RoutedEventArgs e) { // ボタン押下時非同期入力チェックON Common.gblnBtnDesynchronizeLock = true; this.proceeKbn = eProccessKbn.Total; // 入力確定の為、BackgroundWorker経由で入力チェックを呼出 ExBackgroundInputCheckWk bk = new ExBackgroundInputCheckWk(); bk.utl = this; bk.waitTime = 500; this.txtDummy.IsTabStop = true; bk.focusCtl = this.txtDummy; bk.bw.RunWorkerAsync(); }
// F4ボタン(削除) クリック public override void btnF4_Click(object sender, RoutedEventArgs e) { // ボタン押下時非同期入力チェックON Common.gblnBtnDesynchronizeLock = true; this.proceeKbn = eProccessKbn.Delete; // 入力確定の為、BackgroundWorker経由で入力チェックを呼出 ExBackgroundInputCheckWk bk = new ExBackgroundInputCheckWk(); bk.utl = this; bk.waitTime = 500; this.txtDummy.IsTabStop = true; bk.focusCtl = this.txtDummy; bk.bw.RunWorkerAsync(); InputCheckDelete(); }