17 lines
367 B
C#
17 lines
367 B
C#
namespace UI_WinForms;
|
|
|
|
public partial class Loader : Form
|
|
{
|
|
public string DataFile { get; set; } = string.Empty;
|
|
|
|
public Loader()
|
|
{
|
|
this.InitializeComponent();
|
|
}
|
|
|
|
private void loaderStart_LoadProject(object sender, string projectFilePath)
|
|
{
|
|
this.DataFile = projectFilePath;
|
|
this.Close();
|
|
}
|
|
} |