# HG changeset patch # User Tsudico # Date 1294371845 21600 # Node ID 0ea6ce3c6434be0de8cc83fbe940f6d7faeda093 # Parent 489d36b167a61da7a68c45993b734bc8be93ab48 Updated System Form on General Tab Added System Information text box. Currently only a mock up. diff -r 489d36b167a6 -r 0ea6ce3c6434 FrmSystem.Designer.cs --- a/FrmSystem.Designer.cs Wed Dec 22 19:58:51 2010 -0600 +++ b/FrmSystem.Designer.cs Thu Jan 06 21:44:05 2011 -0600 @@ -92,6 +92,8 @@ this.chStatsDefault = new System.Windows.Forms.ColumnHeader(); this.btnStatsRemove = new System.Windows.Forms.Button(); this.btnStatsAdd = new System.Windows.Forms.Button(); + this.gbSystemInfo = new System.Windows.Forms.GroupBox(); + this.txtSystemInfo = new System.Windows.Forms.TextBox(); this.tabSystem.SuspendLayout(); this.tabInfo.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.numDefaultSize)).BeginInit(); @@ -105,6 +107,7 @@ ((System.ComponentModel.ISupportInitialize)(this.numPointMin)).BeginInit(); this.tabStats.SuspendLayout(); this.gbStats.SuspendLayout(); + this.gbSystemInfo.SuspendLayout(); this.SuspendLayout(); // // btnSystemSave @@ -139,6 +142,7 @@ // // tabInfo // + this.tabInfo.Controls.Add(this.gbSystemInfo); this.tabInfo.Controls.Add(this.numDefaultSize); this.tabInfo.Controls.Add(this.lblDefaultSize); this.tabInfo.Controls.Add(this.panel2); @@ -831,6 +835,29 @@ this.btnStatsAdd.UseVisualStyleBackColor = true; this.btnStatsAdd.Click += new System.EventHandler(this.btnStatsAdd_Click); // + // gbSystemInfo + // + this.gbSystemInfo.Controls.Add(this.txtSystemInfo); + this.gbSystemInfo.Location = new System.Drawing.Point(293, 6); + this.gbSystemInfo.Name = "gbSystemInfo"; + this.gbSystemInfo.Size = new System.Drawing.Size(283, 272); + this.gbSystemInfo.TabIndex = 17; + this.gbSystemInfo.TabStop = false; + this.gbSystemInfo.Text = "General Information"; + // + // txtSystemInfo + // + this.txtSystemInfo.AcceptsReturn = true; + this.txtSystemInfo.AcceptsTab = true; + this.txtSystemInfo.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.txtSystemInfo.Location = new System.Drawing.Point(7, 19); + this.txtSystemInfo.Multiline = true; + this.txtSystemInfo.Name = "txtSystemInfo"; + this.txtSystemInfo.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; + this.txtSystemInfo.Size = new System.Drawing.Size(270, 247); + this.txtSystemInfo.TabIndex = 0; + this.txtSystemInfo.TextChanged += new System.EventHandler(this.txtSystemInfo_TextChanged); + // // FrmSystem // this.ClientSize = new System.Drawing.Size(615, 360); @@ -858,6 +885,8 @@ this.tabStats.ResumeLayout(false); this.tabStats.PerformLayout(); this.gbStats.ResumeLayout(false); + this.gbSystemInfo.ResumeLayout(false); + this.gbSystemInfo.PerformLayout(); this.ResumeLayout(false); } @@ -928,6 +957,8 @@ private System.Windows.Forms.ListBox listStatNames; private System.Windows.Forms.Button btnStatsUp; private System.Windows.Forms.Button btnStatsDown; + private System.Windows.Forms.GroupBox gbSystemInfo; + private System.Windows.Forms.TextBox txtSystemInfo; } }