2022-07-26 17:08:47 +00:00
|
|
|
|
namespace UI_WinForms.Components;
|
|
|
|
|
|
|
|
|
|
public partial class Settings : UserControl
|
|
|
|
|
{
|
|
|
|
|
public Settings()
|
|
|
|
|
{
|
|
|
|
|
this.InitializeComponent();
|
|
|
|
|
this.Load += async (sender, args) =>
|
|
|
|
|
{
|
2022-07-26 17:45:18 +00:00
|
|
|
|
foreach (var setting in Setting.GetAllSettings())
|
|
|
|
|
this.panelSettings.Controls.Add(await setting);
|
2022-07-26 17:08:47 +00:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|