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); }; } }