add control manager for plugins

This commit is contained in:
Pilzinsel64
2024-11-15 11:03:29 +01:00
parent b7acc6f0a4
commit 6abaa8615a
7 changed files with 145 additions and 54 deletions

View File

@@ -0,0 +1,6 @@
namespace Pilz.Plugins.Advanced.UI;
public class ControlParameters(Control? control) : PluginFunctionParameter
{
public Control? Control { get; } = control;
}