I18NCommander/I18N Commander/UI WinForms/Loader.cs

15 lines
299 B
C#

namespace UI_WinForms;
public partial class Loader : Form
{
public Loader()
{
this.InitializeComponent();
}
private void loaderStart_LoadProject(object sender, string projectFilePath)
{
// TODO: Call the data model
this.Close();
}
}