I18NCommander/I18N Commander/UI WinForms/Components/Settings.cs

15 lines
362 B
C#

namespace UI_WinForms.Components;
public partial class Settings : UserControl
{
public Settings()
{
this.InitializeComponent();
this.Load += async (sender, args) =>
{
foreach (var setting in Setting.GetAllSettings())
this.panelSettings.Controls.Add(await setting);
};
}
}