-
Notifications
You must be signed in to change notification settings - Fork 1
/
AddWindow.cs
55 lines (47 loc) · 1.45 KB
/
AddWindow.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
using System;
using System.Windows.Forms;
namespace AVTTLoaderStandalone
{
public partial class AddWindow : Form
{
public Node SelectedNode { get; private set; }
public string NewPart { get; private set; }
private Tree tree;
public event EventHandler OnDataAvailable;
//public AddWindow()
//{
// InitializeComponent();
//}
public AddWindow(Tree tree)
{
InitializeComponent();
this.tree = tree;
}
public void PopulateNodesComboBox()
{
foreach (var node in tree.Nodes)
{
comboBoxNodes.Items.Add((string)node.Name);
}
if (comboBoxNodes.Items.Count > 0) comboBoxNodes.SelectedIndex = 0;
}
private void ButtonAddConfirmClick(object sender, EventArgs e)
{
NewPart = textBoxNewPart.Text;
foreach (var node in tree.Nodes)
{
if (node.Name != (string)comboBoxNodes.SelectedItem) continue;
SelectedNode = node;
if (OnDataAvailable != null)
OnDataAvailable(this, EventArgs.Empty);
return;
}
}
private void AddWindowFormClosing(object sender, FormClosingEventArgs e)
{
if (e.CloseReason == CloseReason.WindowsShutDown) return;
Hide();
e.Cancel = true;
}
}
}