I18NCommander/I18N Commander/UI WinForms/Loader.cs
Thorsten Sommer 0587af18f2
Added Git Export Feature
- Added import algorithm
- Added FromJsonX() methods to data models
- Added possibility to work with temp. database file
- Added export processor to handle export process & triggers
- Added something changed event e.g. as export trigger
- Added possibility to import a JSON export
- Updated Git icon
2023-01-22 19:35:57 +01:00

23 lines
512 B
C#

using UI_WinForms.Components;
namespace UI_WinForms;
public partial class Loader : Form
{
public LoaderStart.LoaderResult Result { get; private set; }
public Loader()
{
this.InitializeComponent();
}
private void loaderStart_LoadProject(object sender, LoaderStart.LoaderResult result)
{
if(this.DesignMode)
return;
this.Result = result;
this.DialogResult = DialogResult.OK;
this.Close();
}
}