MUDEngine:

* Realm.cs - Description Property added.
 * Room.cs - Inherits from Zone.cs
 * Zone.cs - Inherits from Realm.cs
 * Zone.cs - Removed Name Property.
 * Deleted old MUDEngine/XmlSerialization.cs as it has been replaced with MUDEngine/FileSystem/XmlSerialization.cs

Project Manager:
 * frmMain.cs - collection of Zones and Rooms are created during selectedIndexChanges from comRealms, lstRooms and lstZones.
 * frmMain.cs - PropertyGrid is now populated within the frmMain_Load instead of within the forms constructor.
 * frmMain.cs - lstZones now populates the lstRooms list box with rooms when its selected index is changed.
This commit is contained in:
Scionwest_cp 2009-11-06 18:10:52 -08:00
parent 97274cb4aa
commit f62fb84e13
6 changed files with 87 additions and 77 deletions

View file

@ -32,11 +32,11 @@
this.propertyGrid1 = new System.Windows.Forms.PropertyGrid();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.groupBox4 = new System.Windows.Forms.GroupBox();
this.lstRooms = new System.Windows.Forms.CheckedListBox();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.lstZones = new System.Windows.Forms.CheckedListBox();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.comRealms = new System.Windows.Forms.ComboBox();
this.lstZones = new System.Windows.Forms.CheckedListBox();
this.lstRooms = new System.Windows.Forms.CheckedListBox();
this.splitContainer1.Panel1.SuspendLayout();
this.splitContainer1.Panel2.SuspendLayout();
this.splitContainer1.SuspendLayout();
@ -93,6 +93,16 @@
this.groupBox4.TabStop = false;
this.groupBox4.Text = "Available Rooms";
//
// lstRooms
//
this.lstRooms.Dock = System.Windows.Forms.DockStyle.Fill;
this.lstRooms.FormattingEnabled = true;
this.lstRooms.Location = new System.Drawing.Point(3, 16);
this.lstRooms.Name = "lstRooms";
this.lstRooms.Size = new System.Drawing.Size(143, 154);
this.lstRooms.TabIndex = 1;
this.lstRooms.ThreeDCheckBoxes = true;
//
// groupBox3
//
this.groupBox3.Controls.Add(this.lstZones);
@ -103,6 +113,17 @@
this.groupBox3.TabStop = false;
this.groupBox3.Text = "Available Zones";
//
// lstZones
//
this.lstZones.Dock = System.Windows.Forms.DockStyle.Fill;
this.lstZones.FormattingEnabled = true;
this.lstZones.Location = new System.Drawing.Point(3, 16);
this.lstZones.Name = "lstZones";
this.lstZones.Size = new System.Drawing.Size(143, 109);
this.lstZones.TabIndex = 0;
this.lstZones.ThreeDCheckBoxes = true;
this.lstZones.SelectedIndexChanged += new System.EventHandler(this.lstZones_SelectedIndexChanged);
//
// groupBox2
//
this.groupBox2.Controls.Add(this.comRealms);
@ -125,26 +146,6 @@
this.comRealms.TabIndex = 0;
this.comRealms.SelectedIndexChanged += new System.EventHandler(this.comRealms_SelectedIndexChanged);
//
// lstZones
//
this.lstZones.Dock = System.Windows.Forms.DockStyle.Fill;
this.lstZones.FormattingEnabled = true;
this.lstZones.Location = new System.Drawing.Point(3, 16);
this.lstZones.Name = "lstZones";
this.lstZones.Size = new System.Drawing.Size(143, 109);
this.lstZones.TabIndex = 0;
this.lstZones.ThreeDCheckBoxes = true;
//
// lstRooms
//
this.lstRooms.Dock = System.Windows.Forms.DockStyle.Fill;
this.lstRooms.FormattingEnabled = true;
this.lstRooms.Location = new System.Drawing.Point(3, 16);
this.lstRooms.Name = "lstRooms";
this.lstRooms.Size = new System.Drawing.Size(143, 154);
this.lstRooms.TabIndex = 1;
this.lstRooms.ThreeDCheckBoxes = true;
//
// frmMain
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);