This commit is contained in:
2008-03-03 15:15:39 +00:00
parent ca755949d6
commit 341b9a41bf
7 changed files with 242 additions and 116 deletions

View File

@@ -30,11 +30,14 @@ namespace Volian.Controls.Library
{
this.tvROFST = new System.Windows.Forms.TreeView();
this.panelValue = new System.Windows.Forms.Panel();
this.pnlROButtons = new System.Windows.Forms.Panel();
this.btnCancelRO = new DevComponents.DotNetBar.ButtonX();
this.btnSaveRO = new DevComponents.DotNetBar.ButtonX();
this.panelRoValue = new System.Windows.Forms.Panel();
this.tbROValue = new DevComponents.DotNetBar.Controls.TextBoxX();
this.lblROValue = new DevComponents.DotNetBar.LabelX();
this.btnInsertRO = new DevComponents.DotNetBar.ButtonX();
this.panelValue.SuspendLayout();
this.pnlROButtons.SuspendLayout();
this.panelRoValue.SuspendLayout();
this.SuspendLayout();
//
@@ -43,6 +46,7 @@ namespace Volian.Controls.Library
this.tvROFST.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.tvROFST.HideSelection = false;
this.tvROFST.Location = new System.Drawing.Point(0, 52);
this.tvROFST.Name = "tvROFST";
this.tvROFST.Size = new System.Drawing.Size(226, 455);
@@ -52,14 +56,48 @@ namespace Volian.Controls.Library
//
// panelValue
//
this.panelValue.Controls.Add(this.pnlROButtons);
this.panelValue.Controls.Add(this.panelRoValue);
this.panelValue.Controls.Add(this.btnInsertRO);
this.panelValue.Dock = System.Windows.Forms.DockStyle.Top;
this.panelValue.Location = new System.Drawing.Point(0, 0);
this.panelValue.Name = "panelValue";
this.panelValue.Size = new System.Drawing.Size(226, 53);
this.panelValue.TabIndex = 7;
//
// pnlROButtons
//
this.pnlROButtons.Controls.Add(this.btnCancelRO);
this.pnlROButtons.Controls.Add(this.btnSaveRO);
this.pnlROButtons.Dock = System.Windows.Forms.DockStyle.Fill;
this.pnlROButtons.Location = new System.Drawing.Point(0, 25);
this.pnlROButtons.Name = "pnlROButtons";
this.pnlROButtons.Size = new System.Drawing.Size(226, 28);
this.pnlROButtons.TabIndex = 9;
//
// btnCancelRO
//
this.btnCancelRO.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
this.btnCancelRO.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btnCancelRO.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
this.btnCancelRO.Location = new System.Drawing.Point(142, 0);
this.btnCancelRO.Name = "btnCancelRO";
this.btnCancelRO.Size = new System.Drawing.Size(84, 27);
this.btnCancelRO.TabIndex = 9;
this.btnCancelRO.Text = "Cancel";
this.btnCancelRO.Click += new System.EventHandler(this.btnCancelRO_Click);
//
// btnSaveRO
//
this.btnSaveRO.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
this.btnSaveRO.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
this.btnSaveRO.Dock = System.Windows.Forms.DockStyle.Left;
this.btnSaveRO.Location = new System.Drawing.Point(0, 0);
this.btnSaveRO.Name = "btnSaveRO";
this.btnSaveRO.Size = new System.Drawing.Size(78, 28);
this.btnSaveRO.TabIndex = 8;
this.btnSaveRO.Text = "Save RO";
this.btnSaveRO.Click += new System.EventHandler(this.btnSaveRO_Click);
//
// panelRoValue
//
this.panelRoValue.Controls.Add(this.tbROValue);
@@ -72,15 +110,14 @@ namespace Volian.Controls.Library
//
// tbROValue
//
this.tbROValue.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
//
//
//
this.tbROValue.Border.Class = "TextBoxBorder";
this.tbROValue.Location = new System.Drawing.Point(54, 0);
this.tbROValue.Dock = System.Windows.Forms.DockStyle.Fill;
this.tbROValue.Location = new System.Drawing.Point(59, 0);
this.tbROValue.Name = "tbROValue";
this.tbROValue.Size = new System.Drawing.Size(167, 25);
this.tbROValue.Size = new System.Drawing.Size(167, 20);
this.tbROValue.TabIndex = 7;
//
// lblROValue
@@ -92,17 +129,6 @@ namespace Volian.Controls.Library
this.lblROValue.TabIndex = 6;
this.lblROValue.Text = "RO Value:";
//
// btnInsertRO
//
this.btnInsertRO.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
this.btnInsertRO.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
this.btnInsertRO.Dock = System.Windows.Forms.DockStyle.Bottom;
this.btnInsertRO.Location = new System.Drawing.Point(0, 27);
this.btnInsertRO.Name = "btnInsertRO";
this.btnInsertRO.Size = new System.Drawing.Size(226, 26);
this.btnInsertRO.TabIndex = 7;
this.btnInsertRO.Text = "Select RO";
//
// DisplayRO
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
@@ -112,6 +138,7 @@ namespace Volian.Controls.Library
this.Name = "DisplayRO";
this.Size = new System.Drawing.Size(226, 507);
this.panelValue.ResumeLayout(false);
this.pnlROButtons.ResumeLayout(false);
this.panelRoValue.ResumeLayout(false);
this.ResumeLayout(false);
@@ -121,9 +148,11 @@ namespace Volian.Controls.Library
private System.Windows.Forms.TreeView tvROFST;
private System.Windows.Forms.Panel panelValue;
private DevComponents.DotNetBar.ButtonX btnInsertRO;
private System.Windows.Forms.Panel panelRoValue;
private DevComponents.DotNetBar.Controls.TextBoxX tbROValue;
private DevComponents.DotNetBar.LabelX lblROValue;
private System.Windows.Forms.Panel pnlROButtons;
private DevComponents.DotNetBar.ButtonX btnCancelRO;
private DevComponents.DotNetBar.ButtonX btnSaveRO;
}
}