namespace ClabGui { /// /// Partial GUI class for drawing a variable and it's domains. /// partial class VarParaGui { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Component Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.panel2 = new System.Windows.Forms.Panel(); this.varName = new System.Windows.Forms.TextBox(); this.domainVCombo = new System.Windows.Forms.ComboBox(); this.panel2.SuspendLayout(); this.SuspendLayout(); // // panel2 // this.panel2.Controls.Add(this.varName); this.panel2.Controls.Add(this.domainVCombo); this.panel2.Dock = System.Windows.Forms.DockStyle.Fill; this.panel2.Location = new System.Drawing.Point(0, 0); this.panel2.MaximumSize = new System.Drawing.Size(0, 50); this.panel2.MinimumSize = new System.Drawing.Size(300, 40); this.panel2.Name = "panel2"; this.panel2.Size = new System.Drawing.Size(300, 40); this.panel2.TabIndex = 12; // // varName // this.varName.BorderStyle = System.Windows.Forms.BorderStyle.None; this.varName.Location = new System.Drawing.Point(16, 16); this.varName.Name = "varName"; this.varName.ReadOnly = true; this.varName.Size = new System.Drawing.Size(100, 13); this.varName.TabIndex = 14; this.varName.WordWrap = false; // // domainVCombo // this.domainVCombo.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.domainVCombo.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed; this.domainVCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.domainVCombo.FormattingEnabled = true; this.domainVCombo.Location = new System.Drawing.Point(122, 8); this.domainVCombo.Name = "domainVCombo"; this.domainVCombo.Size = new System.Drawing.Size(163, 21); this.domainVCombo.TabIndex = 12; this.domainVCombo.SelectedIndexChanged += new System.EventHandler(this.domainVCombo_SelectedIndexChanged); // // VarParaGui // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.AutoScroll = true; this.AutoSize = true; this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; this.Controls.Add(this.panel2); this.MinimumSize = new System.Drawing.Size(300, 40); this.Name = "VarParaGui"; this.Size = new System.Drawing.Size(300, 40); this.panel2.ResumeLayout(false); this.panel2.PerformLayout(); this.ResumeLayout(false); } #endregion private System.Windows.Forms.Panel panel2; private System.Windows.Forms.TextBox varName; private System.Windows.Forms.ComboBox domainVCombo; } }