15 lines
357 B
C#
15 lines
357 B
C#
|
namespace UI_WinForms.Components;
|
|||
|
|
|||
|
public partial class Settings : UserControl
|
|||
|
{
|
|||
|
public Settings()
|
|||
|
{
|
|||
|
this.InitializeComponent();
|
|||
|
this.Load += async (sender, args) =>
|
|||
|
{
|
|||
|
var deepL = await Setting<bool>.ShowDeepLSettingAsync();
|
|||
|
this.panelSettings.Controls.Add(deepL);
|
|||
|
};
|
|||
|
}
|
|||
|
}
|