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