change UI to UI.WinForms
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
namespace Pilz.UI.WinForms.Controls.ConfigurationManager;
|
||||
|
||||
public class ConfigurationManager
|
||||
{
|
||||
private readonly List<ConfigurationPanel> panels = [];
|
||||
|
||||
public void Register(ConfigurationPanel panel)
|
||||
{
|
||||
panels.Add(panel);
|
||||
}
|
||||
|
||||
public IEnumerable<Control> Build()
|
||||
{
|
||||
foreach (var panel in panels)
|
||||
{
|
||||
panel.Build(this);
|
||||
yield return panel;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user