namespace ApplicationSettingsSample {
partial class UpdateSettingForm {
///
/// 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.closeButton = new System.Windows.Forms.Button();
this.updateSettingButton = new System.Windows.Forms.Button();
this.settingTextBox = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(12, 12);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(59, 13);
this.label1.TabIndex = 0;
this.label1.Text = "High Score:";
//
// closeButton
//
this.closeButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.closeButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.closeButton.Location = new System.Drawing.Point(311, 40);
this.closeButton.Name = "closeButton";
this.closeButton.Size = new System.Drawing.Size(75, 23);
this.closeButton.TabIndex = 1;
this.closeButton.Text = "Close";
//
// updateSettingButton
//
this.updateSettingButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.updateSettingButton.Location = new System.Drawing.Point(199, 40);
this.updateSettingButton.Name = "updateSettingButton";
this.updateSettingButton.Size = new System.Drawing.Size(106, 23);
this.updateSettingButton.TabIndex = 3;
this.updateSettingButton.Text = "Update Setting";
this.updateSettingButton.Click += new System.EventHandler(this.updateSettingButton_Click);
//
// settingTextBox
//
this.settingTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.settingTextBox.Location = new System.Drawing.Point(71, 9);
this.settingTextBox.Name = "settingTextBox";
this.settingTextBox.Size = new System.Drawing.Size(315, 20);
this.settingTextBox.TabIndex = 4;
//
// UpdateSettingForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(398, 75);
this.Controls.Add(this.settingTextBox);
this.Controls.Add(this.updateSettingButton);
this.Controls.Add(this.closeButton);
this.Controls.Add(this.label1);
this.Name = "UpdateSettingForm";
this.Text = "Update Setting";
this.Load += new System.EventHandler(this.UpdateSettingForm_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Button closeButton;
private System.Windows.Forms.Button updateSettingButton;
private System.Windows.Forms.TextBox settingTextBox;
}
}