Visual Designer:

* foreach iterations are halted once a object has been added to the designer.
This commit is contained in:
Scionwest_cp 2009-11-21 10:21:27 -08:00
parent 89e01e75e1
commit c6c2e4dc9c
4 changed files with 241 additions and 179 deletions

View file

@ -138,6 +138,11 @@ namespace VisualDesigner
if (page1.Text == "Empty")
{
page1.Text = currentScript.Name;
if (currentScript.Name == "Room")
{
page1.Controls.Add(new VisualComponents.RoomDesigner((Room)currentScript.Instance));
}
break;
}
//Otherwise create a new page
else
@ -148,9 +153,11 @@ namespace VisualDesigner
tab.DragEnter += new DragEventHandler(page1_DragEnter);
tab.AllowDrop = true;
tab.BackColor = Color.FromArgb(64,64,64);
page1.Text = currentScript.Name;
tabControl1.TabPages.Add(tab);
//select the tab.
tabControl1.SelectedTab = tab;
break;
}
}
}