namespace RunTimeSettingsSample { 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.applicationButton = new System.Windows.Forms.Button(); this.environmentButton = new System.Windows.Forms.Button(); this.specialFoldersButton = new System.Windows.Forms.Button(); this.commandLineButton = new System.Windows.Forms.Button(); this.SuspendLayout(); // // applicationButton // this.applicationButton.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.applicationButton.Location = new System.Drawing.Point(12, 12); this.applicationButton.Name = "applicationButton"; this.applicationButton.Size = new System.Drawing.Size(268, 23); this.applicationButton.TabIndex = 0; this.applicationButton.Text = "Application"; this.applicationButton.Click += new System.EventHandler(this.applicationButton_Click); // // environmentButton // this.environmentButton.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.environmentButton.Location = new System.Drawing.Point(12, 41); this.environmentButton.Name = "environmentButton"; this.environmentButton.Size = new System.Drawing.Size(268, 23); this.environmentButton.TabIndex = 1; this.environmentButton.Text = "Environment"; this.environmentButton.Click += new System.EventHandler(this.environmentButton_Click); // // specialFoldersButton // this.specialFoldersButton.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.specialFoldersButton.Location = new System.Drawing.Point(12, 70); this.specialFoldersButton.Name = "specialFoldersButton"; this.specialFoldersButton.Size = new System.Drawing.Size(268, 23); this.specialFoldersButton.TabIndex = 2; this.specialFoldersButton.Text = "Special Folders"; this.specialFoldersButton.Click += new System.EventHandler(this.specialFoldersButton_Click); // // commandLineButton // this.commandLineButton.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.commandLineButton.Location = new System.Drawing.Point(12, 99); this.commandLineButton.Name = "commandLineButton"; this.commandLineButton.Size = new System.Drawing.Size(268, 23); this.commandLineButton.TabIndex = 3; this.commandLineButton.Text = "Command Line"; this.commandLineButton.Click += new System.EventHandler(this.commandLineButton_Click); // // MainForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(292, 131); this.Controls.Add(this.commandLineButton); this.Controls.Add(this.specialFoldersButton); this.Controls.Add(this.environmentButton); this.Controls.Add(this.applicationButton); this.Name = "MainForm"; this.Text = "MainForm"; this.ResumeLayout(false); } #endregion private System.Windows.Forms.Button applicationButton; private System.Windows.Forms.Button environmentButton; private System.Windows.Forms.Button specialFoldersButton; private System.Windows.Forms.Button commandLineButton; } }