Added the selected data file

This commit is contained in:
Thorsten Sommer 2022-07-09 15:07:34 +02:00
parent 5d09cb7e57
commit 2f77db1a16
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108

View File

@ -2,6 +2,8 @@
public partial class Loader : Form public partial class Loader : Form
{ {
public string DataFile { get; set; } = string.Empty;
public Loader() public Loader()
{ {
this.InitializeComponent(); this.InitializeComponent();
@ -9,7 +11,7 @@ public partial class Loader : Form
private void loaderStart_LoadProject(object sender, string projectFilePath) private void loaderStart_LoadProject(object sender, string projectFilePath)
{ {
// TODO: Call the data model this.DataFile = projectFilePath;
this.Close(); this.Close();
} }
} }