15 lines
299 B
C#
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();
|
|
}
|
|
} |