-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodifyPackageForm.cs
61 lines (55 loc) · 2.04 KB
/
modifyPackageForm.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
using System;
using System.IO;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using Newtonsoft.Json;
namespace fgui_toolkit
{
public partial class modifyPackageForm : Form
{
// All export path
private string _iName = "";
private ExportInfo exportInfo;
private FguiToolkitForm _parentform;
public modifyPackageForm(string iName , ExportInfo info ,FguiToolkitForm parentform)
{
InitializeComponent();
this.FormClosing += Form1_Closing;
this.exportInfo = info;
this._iName = iName;
_parentform = parentform;
txtGroupName.Text = iName;
txtPkgName.Text = this.exportInfo.PackageName;
txtExpPath.Text = this.exportInfo.ExportPath;
txtBrExpPath.Text = this.exportInfo.ExportPath_Branch;
txtGroupName.Enabled = false;
KeyPreview = true;
this.KeyDown += new KeyEventHandler(Form1_KeyDown);
}
private void Form1_Closing(object sender, FormClosingEventArgs e)
{
StringBuilder sb = new StringBuilder(255);
int t = Global.GetPrivateProfileString("FGUI", "Location", "", sb, 255, Application.StartupPath + "\\Config.ini");
string FguiLocation = sb.ToString();
if (FguiLocation.Length > 0)
{
this.exportInfo.PackageName = txtPkgName.Text;
this.exportInfo.ExportPath = txtExpPath.Text;
this.exportInfo.ExportPath_Branch = txtBrExpPath.Text;
string expinfopath = FguiLocation + "\\settings\\exportinfo.json";
_parentform.onModifyExpDlgClosing(this._iName, this.exportInfo);
}
}
private void Form1_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Escape)
this.Close();
}
}
}