I18NCommander/I18N Commander/UI WinForms/Loader.cs

21 lines
473 B
C#
Raw Normal View History

2022-06-06 20:07:17 +00:00
namespace UI_WinForms;
public partial class Loader : Form
{
2022-07-09 13:07:34 +00:00
public string DataFile { get; set; } = string.Empty;
2022-06-06 20:07:17 +00:00
public Loader()
{
this.InitializeComponent();
}
2022-06-12 14:20:26 +00:00
private void loaderStart_LoadProject(object sender, string projectFilePath)
{
2022-07-10 18:30:28 +00:00
if(this.DesignMode)
return;
2022-07-09 13:07:34 +00:00
this.DataFile = projectFilePath;
this.DialogResult = DialogResult.OK;
2022-06-12 14:20:26 +00:00
this.Close();
}
2022-06-06 20:07:17 +00:00
}