namespace CompileTimeSettingsSample {
partial class MainForm {
///
/// 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.label1 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.companyNameTextBox = new System.Windows.Forms.TextBox();
this.productVersionTextBox = new System.Windows.Forms.TextBox();
this.productNameTextBox = new System.Windows.Forms.TextBox();
this.label4 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(5, 15);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(81, 13);
this.label1.TabIndex = 0;
this.label1.Text = "Company Name:";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(5, 41);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(74, 13);
this.label3.TabIndex = 2;
this.label3.Text = "Product Name:";
//
// companyNameTextBox
//
this.companyNameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.companyNameTextBox.Location = new System.Drawing.Point(92, 12);
this.companyNameTextBox.Name = "companyNameTextBox";
this.companyNameTextBox.Size = new System.Drawing.Size(188, 20);
this.companyNameTextBox.TabIndex = 1;
//
// productVersionTextBox
//
this.productVersionTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.productVersionTextBox.Location = new System.Drawing.Point(92, 64);
this.productVersionTextBox.Name = "productVersionTextBox";
this.productVersionTextBox.Size = new System.Drawing.Size(188, 20);
this.productVersionTextBox.TabIndex = 5;
//
// productNameTextBox
//
this.productNameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.productNameTextBox.Location = new System.Drawing.Point(92, 38);
this.productNameTextBox.Name = "productNameTextBox";
this.productNameTextBox.Size = new System.Drawing.Size(188, 20);
this.productNameTextBox.TabIndex = 3;
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(5, 67);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(78, 13);
this.label4.TabIndex = 4;
this.label4.Text = "Product Version";
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(292, 94);
this.Controls.Add(this.label4);
this.Controls.Add(this.productNameTextBox);
this.Controls.Add(this.productVersionTextBox);
this.Controls.Add(this.companyNameTextBox);
this.Controls.Add(this.label3);
this.Controls.Add(this.label1);
this.Name = "MainForm";
this.Text = "Compile-Time Settings Sample";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.TextBox companyNameTextBox;
private System.Windows.Forms.TextBox productVersionTextBox;
private System.Windows.Forms.TextBox productNameTextBox;
private System.Windows.Forms.Label label4;
}
}