- '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
17 lines
297 B
C#
17 lines
297 B
C#
using System;
|
|
|
|
namespace TBF.BenchControl
|
|
{
|
|
public class CfgChangeArgs : EventArgs
|
|
{
|
|
public CfgChangeCmd Command;
|
|
public Generic.IComponentCfg Cfg;
|
|
|
|
public CfgChangeArgs(CfgChangeCmd command, Generic.IComponentCfg cfg)
|
|
{
|
|
Command = command;
|
|
Cfg = cfg;
|
|
}
|
|
}
|
|
}
|