namespace friction { partial class NewPreference { /// /// 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 Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.btnAdd = new System.Windows.Forms.Button(); this.label1 = new System.Windows.Forms.Label(); this.tbName = new System.Windows.Forms.TextBox(); this.btnCancel = new System.Windows.Forms.Button(); this.SuspendLayout(); // // btnAdd // this.btnAdd.Location = new System.Drawing.Point(151, 75); this.btnAdd.Name = "btnAdd"; this.btnAdd.Size = new System.Drawing.Size(75, 23); this.btnAdd.TabIndex = 0; this.btnAdd.Text = "Add"; this.btnAdd.UseVisualStyleBackColor = true; this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click); // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(34, 33); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(47, 12); this.label1.TabIndex = 1; this.label1.Text = "Name: "; // // tbName // this.tbName.Location = new System.Drawing.Point(87, 30); this.tbName.Name = "tbName"; this.tbName.Size = new System.Drawing.Size(188, 21); this.tbName.TabIndex = 2; // // btnCancel // this.btnCancel.Location = new System.Drawing.Point(232, 75); this.btnCancel.Name = "btnCancel"; this.btnCancel.Size = new System.Drawing.Size(75, 23); this.btnCancel.TabIndex = 3; this.btnCancel.Text = "Cancel"; this.btnCancel.UseVisualStyleBackColor = true; this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click); // // NewPreference // this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(319, 106); this.ControlBox = false; this.Controls.Add(this.btnCancel); this.Controls.Add(this.tbName); this.Controls.Add(this.label1); this.Controls.Add(this.btnAdd); this.Name = "NewPreference"; this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide; this.Text = "New Preference"; this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Button btnAdd; private System.Windows.Forms.Label label1; private System.Windows.Forms.TextBox tbName; private System.Windows.Forms.Button btnCancel; } }