コード例 #1
0
ファイル: Calculator.cs プロジェクト: Perustaja/RpnCalc
 void Calculation_Failed(object sender, ScreenUpdatedEventArgs e)
 {
     lblScreen.Text  = e.DisplayText;
     _isInErrorState = true;
 }
コード例 #2
0
ファイル: Calculator.cs プロジェクト: Perustaja/RpnCalc
 // First two methods are eventhandlers for when the backing calculator is done
 void Calculation_Succeeded(object sender, ScreenUpdatedEventArgs e)
 {
     lblScreen.Text = e.DisplayText;
 }