- '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
23 lines
330 B
C#
23 lines
330 B
C#
|
|
namespace TBF.BenchControl.Generic
|
|
{
|
|
public interface IComponent
|
|
{
|
|
string Name { get; }
|
|
|
|
string ClassName { get; }
|
|
|
|
string ParentName { get; }
|
|
|
|
Entities.DebugMode DebugLevel { get; }
|
|
|
|
Entities.LogLevel LogLevel { get; }
|
|
|
|
IComponentCfg Cfg { get; }
|
|
|
|
void StartChangeHandler();
|
|
|
|
void StopChangeHandler();
|
|
}
|
|
}
|