tbf/TestBenchFramework/BenchControl/CmdResponseArgs.cs
Milan Hanajik 0160dc965d - RegulValve ADC Open/Close values calibration implemented
- 'More' button added to ComponentCfgCtrl-s
- Dataflow from ComponentParametersDlg to components: CfgChangeHandler
- Dataflow from components to ComponentParametersDlg: CmdResponseHandler
- Detection of parameter changes and appropriate MesssageBox display:
  1.warning message when component configuration change requires program restart
  2.confirmation message box when any configuration changes would be lost
2015-01-03 14:45:58 +01:00

17 lines
285 B
C#

using System;
namespace TBF.BenchControl
{
public class CmdResponseArgs : EventArgs
{
public CfgChangeCmd Command;
public int Response;
public CmdResponseArgs(CfgChangeCmd command, int response)
{
Command = command;
Response = response;
}
}
}