add control manager for plugins
This commit is contained in:
@@ -2,6 +2,8 @@
|
||||
|
||||
public abstract class ControlFeature : PluginFeature
|
||||
{
|
||||
public bool ControlNameRegEx { get; }
|
||||
|
||||
public string? ControlName { get; }
|
||||
|
||||
public ControlFeature(string? controlName, string type, string identifier) : base(type, identifier)
|
||||
@@ -14,5 +16,5 @@ public abstract class ControlFeature : PluginFeature
|
||||
ControlName = controlName;
|
||||
}
|
||||
|
||||
public abstract void Execute(Control control, PluginFunctionParameter? parameter);
|
||||
public abstract void Execute(Control control, ControlExecuteReason reason, PluginFunctionParameter? parameter);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user