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:40:46 +00:00
|
|
|
|
var deepL = await Setting.ShowDeepLSettingAsync();
|
2022-07-26 17:08:47 +00:00
|
|
|
|
this.panelSettings.Controls.Add(deepL);
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|