namespace SettingsVersioningSample { 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.menuStrip1 = new System.Windows.Forms.MenuStrip(); this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.saveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.versioningsaveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.saveRollbackToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.installRollbackToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.label1 = new System.Windows.Forms.Label(); this.userSettingTextBox = new System.Windows.Forms.TextBox(); this.statusStrip1 = new System.Windows.Forms.StatusStrip(); this.versionToolStripStatusLabel = new System.Windows.Forms.ToolStripStatusLabel(); this.saveButton = new System.Windows.Forms.Button(); this.menuStrip1.SuspendLayout(); this.statusStrip1.SuspendLayout(); this.SuspendLayout(); // // menuStrip1 // this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.fileToolStripMenuItem, this.versioningsaveToolStripMenuItem}); this.menuStrip1.Location = new System.Drawing.Point(0, 0); this.menuStrip1.Name = "menuStrip1"; this.menuStrip1.Size = new System.Drawing.Size(323, 24); this.menuStrip1.TabIndex = 0; this.menuStrip1.Text = "menuStrip1"; // // fileToolStripMenuItem // this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.saveToolStripMenuItem, this.toolStripSeparator1, this.exitToolStripMenuItem}); this.fileToolStripMenuItem.Name = "fileToolStripMenuItem"; this.fileToolStripMenuItem.Size = new System.Drawing.Size(35, 20); this.fileToolStripMenuItem.Text = "&File"; // // saveToolStripMenuItem // this.saveToolStripMenuItem.Name = "saveToolStripMenuItem"; this.saveToolStripMenuItem.Size = new System.Drawing.Size(109, 22); this.saveToolStripMenuItem.Text = "&Save"; this.saveToolStripMenuItem.Click += new System.EventHandler(this.saveToolStripMenuItem_Click); // // toolStripSeparator1 // this.toolStripSeparator1.Name = "toolStripSeparator1"; this.toolStripSeparator1.Size = new System.Drawing.Size(106, 6); // // exitToolStripMenuItem // this.exitToolStripMenuItem.Name = "exitToolStripMenuItem"; this.exitToolStripMenuItem.Size = new System.Drawing.Size(109, 22); this.exitToolStripMenuItem.Text = "E&xit"; this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click); // // versioningsaveToolStripMenuItem // this.versioningsaveToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.saveRollbackToolStripMenuItem, this.installRollbackToolStripMenuItem}); this.versioningsaveToolStripMenuItem.Name = "versioningsaveToolStripMenuItem"; this.versioningsaveToolStripMenuItem.Size = new System.Drawing.Size(68, 20); this.versioningsaveToolStripMenuItem.Text = "&Versioning"; // // saveRollbackToolStripMenuItem // this.saveRollbackToolStripMenuItem.Name = "saveRollbackToolStripMenuItem"; this.saveRollbackToolStripMenuItem.Size = new System.Drawing.Size(203, 22); this.saveRollbackToolStripMenuItem.Text = "Rollback to &Session Start"; this.saveRollbackToolStripMenuItem.Click += new System.EventHandler(this.saveRollbackToolStripMenuItem_Click); // // installRollbackToolStripMenuItem // this.installRollbackToolStripMenuItem.Name = "installRollbackToolStripMenuItem"; this.installRollbackToolStripMenuItem.Size = new System.Drawing.Size(203, 22); this.installRollbackToolStripMenuItem.Text = "Rollback to &Default"; this.installRollbackToolStripMenuItem.Click += new System.EventHandler(this.installRollbackToolStripMenuItem_Click); // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(12, 35); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(75, 13); this.label1.TabIndex = 1; this.label1.Text = "userSettingv1:"; // // userSettingTextBox // this.userSettingTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.userSettingTextBox.Location = new System.Drawing.Point(90, 32); this.userSettingTextBox.Name = "userSettingTextBox"; this.userSettingTextBox.Size = new System.Drawing.Size(118, 20); this.userSettingTextBox.TabIndex = 5; // // statusStrip1 // this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.versionToolStripStatusLabel}); this.statusStrip1.Location = new System.Drawing.Point(0, 62); this.statusStrip1.Name = "statusStrip1"; this.statusStrip1.Size = new System.Drawing.Size(323, 22); this.statusStrip1.TabIndex = 6; this.statusStrip1.Text = "statusStrip1"; // // versionToolStripStatusLabel // this.versionToolStripStatusLabel.Name = "versionToolStripStatusLabel"; this.versionToolStripStatusLabel.Size = new System.Drawing.Size(0, 17); // // saveButton // this.saveButton.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.saveButton.Location = new System.Drawing.Point(214, 30); this.saveButton.Name = "saveButton"; this.saveButton.Size = new System.Drawing.Size(97, 23); this.saveButton.TabIndex = 7; this.saveButton.Text = "Save Setting"; this.saveButton.Click += new System.EventHandler(this.saveButton_Click); // // MainForm // this.ClientSize = new System.Drawing.Size(323, 84); this.Controls.Add(this.saveButton); this.Controls.Add(this.userSettingTextBox); this.Controls.Add(this.label1); this.Controls.Add(this.statusStrip1); this.Controls.Add(this.menuStrip1); this.Name = "MainForm"; this.Text = "Settings Versioning"; this.Load += new System.EventHandler(this.MainForm_Load); this.menuStrip1.ResumeLayout(false); this.menuStrip1.PerformLayout(); this.statusStrip1.ResumeLayout(false); this.statusStrip1.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.MenuStrip menuStrip1; private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem versioningsaveToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem saveRollbackToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem installRollbackToolStripMenuItem; private System.Windows.Forms.Label label1; private System.Windows.Forms.TextBox userSettingTextBox; private System.Windows.Forms.ToolStripMenuItem saveToolStripMenuItem; private System.Windows.Forms.ToolStripSeparator toolStripSeparator1; private System.Windows.Forms.StatusStrip statusStrip1; private System.Windows.Forms.ToolStripStatusLabel versionToolStripStatusLabel; private System.Windows.Forms.Button saveButton; } }