namespace Registry { 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.textBoxPath = new System.Windows.Forms.TextBox(); this.textBoxData = new System.Windows.Forms.TextBox(); this.buttonRead = new System.Windows.Forms.Button(); this.buttonWrite = new System.Windows.Forms.Button(); this.SuspendLayout(); // // textBoxPath // this.textBoxPath.Location = new System.Drawing.Point(47, 21); this.textBoxPath.Name = "textBoxPath"; this.textBoxPath.Size = new System.Drawing.Size(268, 23); this.textBoxPath.TabIndex = 0; // // textBoxData // this.textBoxData.Location = new System.Drawing.Point(47, 61); this.textBoxData.Name = "textBoxData"; this.textBoxData.Size = new System.Drawing.Size(268, 23); this.textBoxData.TabIndex = 1; // // buttonRead // this.buttonRead.Location = new System.Drawing.Point(336, 21); this.buttonRead.Name = "buttonRead"; this.buttonRead.Size = new System.Drawing.Size(73, 23); this.buttonRead.TabIndex = 2; this.buttonRead.Text = "Read"; this.buttonRead.Click += new System.EventHandler(this.buttonRead_Click); // // buttonWrite // this.buttonWrite.Location = new System.Drawing.Point(336, 61); this.buttonWrite.Name = "buttonWrite"; this.buttonWrite.Size = new System.Drawing.Size(73, 23); this.buttonWrite.TabIndex = 3; this.buttonWrite.Text = "Write"; this.buttonWrite.Click += new System.EventHandler(this.buttonWrite_Click); // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; this.AutoScroll = true; this.ClientSize = new System.Drawing.Size(462, 120); this.Controls.Add(this.buttonWrite); this.Controls.Add(this.buttonRead); this.Controls.Add(this.textBoxData); this.Controls.Add(this.textBoxPath); this.Name = "Form1"; this.Text = "Registry"; this.ResumeLayout(false); } #endregion private System.Windows.Forms.TextBox textBoxPath; private System.Windows.Forms.TextBox textBoxData; private System.Windows.Forms.Button buttonRead; private System.Windows.Forms.Button buttonWrite; } }