Implemented load project event

This commit is contained in:
Thorsten Sommer 2022-06-12 16:20:26 +02:00
parent 89b2744896
commit 502dea63e0
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108
2 changed files with 7 additions and 0 deletions

View File

@ -56,6 +56,7 @@
this.loaderStart.Name = "loaderStart"; this.loaderStart.Name = "loaderStart";
this.loaderStart.Size = new System.Drawing.Size(794, 444); this.loaderStart.Size = new System.Drawing.Size(794, 444);
this.loaderStart.TabIndex = 0; this.loaderStart.TabIndex = 0;
this.loaderStart.LoadProject += new System.EventHandler<string>(this.loaderStart_LoadProject);
// //
// Loader // Loader
// //

View File

@ -6,4 +6,10 @@ public partial class Loader : Form
{ {
this.InitializeComponent(); this.InitializeComponent();
} }
private void loaderStart_LoadProject(object sender, string projectFilePath)
{
// TODO: Call the data model
this.Close();
}
} }