-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathNewMap.cs
More file actions
34 lines (30 loc) · 740 Bytes
/
NewMap.cs
File metadata and controls
34 lines (30 loc) · 740 Bytes
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
namespace MapEditor;
public partial class NewMap : Form
{
public int width;
public int height;
//delegate string fff();
public NewMap()
{
InitializeComponent();
width = 100;
height = 100;
//fff f = delegate(){};
//f.inm
//List<String> f;
//f[
}
private void numericUpDown1_ValueChanged(object sender, EventArgs e)
{
}
private void button1_Click(object sender, EventArgs e)
{
width = (int)numericUpDown1.Value;
height = (int)numericUpDown2.Value;
//MessageBox.Show("w = " + width + " h = " + height);
Close();
}
private void numericUpDown2_ValueChanged(object sender, EventArgs e)
{
}
}