Exemplo n.º 1
0
 private void newToolStripMenuItem_Click(object sender, EventArgs e)
 {
     frmMapConfig newMap = new frmMapConfig();
     newMap.ShowDialog(this);
     map = newMap.Map;
     this.toolStripStatusLabel1.Text = map.mapName;
     DrawTileGrid();
 }
Exemplo n.º 2
0
 public frmMapConfig()
 {
     InitializeComponent();
     this.AutoValidate = System.Windows.Forms.AutoValidate.Disable;
     map = new MapInfo();
 }