namespace RegistrySample
{
partial class Form1
{
///
/// 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.btnSave = new System.Windows.Forms.Button();
this.btnRead = new System.Windows.Forms.Button();
this.btnRemoveValue = new System.Windows.Forms.Button();
this.btnRemoveKey = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.tbxLastname = new System.Windows.Forms.TextBox();
this.tbxAge = new System.Windows.Forms.TextBox();
this.btnBrowseFile = new System.Windows.Forms.Button();
this.lblFilename = new System.Windows.Forms.Label();
this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
this.SuspendLayout();
//
// btnSave
//
this.btnSave.Location = new System.Drawing.Point(12, 119);
this.btnSave.Name = "btnSave";
this.btnSave.Size = new System.Drawing.Size(318, 23);
this.btnSave.TabIndex = 0;
this.btnSave.Text = "Сохранить в реестре";
this.btnSave.UseVisualStyleBackColor = true;
this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
//
// btnRead
//
this.btnRead.Location = new System.Drawing.Point(12, 148);
this.btnRead.Name = "btnRead";
this.btnRead.Size = new System.Drawing.Size(318, 23);
this.btnRead.TabIndex = 1;
this.btnRead.Text = "Прочитать из реестра";
this.btnRead.UseVisualStyleBackColor = true;
this.btnRead.Click += new System.EventHandler(this.btnRead_Click);
//
// btnRemoveValue
//
this.btnRemoveValue.Location = new System.Drawing.Point(12, 177);
this.btnRemoveValue.Name = "btnRemoveValue";
this.btnRemoveValue.Size = new System.Drawing.Size(318, 23);
this.btnRemoveValue.TabIndex = 2;
this.btnRemoveValue.Text = "Удалить данные";
this.btnRemoveValue.UseVisualStyleBackColor = true;
this.btnRemoveValue.Click += new System.EventHandler(this.btnRemoveValue_Click);
//
// btnRemoveKey
//
this.btnRemoveKey.Location = new System.Drawing.Point(12, 206);
this.btnRemoveKey.Name = "btnRemoveKey";
this.btnRemoveKey.Size = new System.Drawing.Size(318, 23);
this.btnRemoveKey.TabIndex = 3;
this.btnRemoveKey.Text = "Удалить ключ";
this.btnRemoveKey.UseVisualStyleBackColor = true;
this.btnRemoveKey.Click += new System.EventHandler(this.btnRemoveKey_Click);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(55, 9);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(59, 13);
this.label1.TabIndex = 4;
this.label1.Text = "Фамилия:";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(55, 46);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(52, 13);
this.label2.TabIndex = 5;
this.label2.Text = "Возраст:";
//
// tbxLastname
//
this.tbxLastname.Location = new System.Drawing.Point(120, 9);
this.tbxLastname.Name = "tbxLastname";
this.tbxLastname.Size = new System.Drawing.Size(210, 20);
this.tbxLastname.TabIndex = 6;
//
// tbxAge
//
this.tbxAge.Location = new System.Drawing.Point(120, 46);
this.tbxAge.Name = "tbxAge";
this.tbxAge.Size = new System.Drawing.Size(210, 20);
this.tbxAge.TabIndex = 7;
//
// btnBrowseFile
//
this.btnBrowseFile.Location = new System.Drawing.Point(15, 78);
this.btnBrowseFile.Name = "btnBrowseFile";
this.btnBrowseFile.Size = new System.Drawing.Size(21, 23);
this.btnBrowseFile.TabIndex = 8;
this.btnBrowseFile.Text = "+";
this.btnBrowseFile.UseVisualStyleBackColor = true;
this.btnBrowseFile.Click += new System.EventHandler(this.btnBrowseFile_Click);
//
// lblFilename
//
this.lblFilename.AutoSize = true;
this.lblFilename.Location = new System.Drawing.Point(42, 83);
this.lblFilename.Name = "lblFilename";
this.lblFilename.Size = new System.Drawing.Size(72, 13);
this.lblFilename.TabIndex = 9;
this.lblFilename.Text = "Аудио файл: ";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(348, 241);
this.Controls.Add(this.lblFilename);
this.Controls.Add(this.btnBrowseFile);
this.Controls.Add(this.tbxAge);
this.Controls.Add(this.tbxLastname);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.btnRemoveKey);
this.Controls.Add(this.btnRemoveValue);
this.Controls.Add(this.btnRead);
this.Controls.Add(this.btnSave);
this.Name = "Form1";
this.Text = "Form1";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button btnSave;
private System.Windows.Forms.Button btnRead;
private System.Windows.Forms.Button btnRemoveValue;
private System.Windows.Forms.Button btnRemoveKey;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox tbxLastname;
private System.Windows.Forms.TextBox tbxAge;
private System.Windows.Forms.Button btnBrowseFile;
private System.Windows.Forms.Label lblFilename;
private System.Windows.Forms.OpenFileDialog openFileDialog;
}
}