Form1.Designer.cs 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. namespace RegistrySample
  2. {
  3. partial class Form1
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.btnSave = new System.Windows.Forms.Button();
  29. this.btnRead = new System.Windows.Forms.Button();
  30. this.btnRemoveValue = new System.Windows.Forms.Button();
  31. this.btnRemoveKey = new System.Windows.Forms.Button();
  32. this.label1 = new System.Windows.Forms.Label();
  33. this.label2 = new System.Windows.Forms.Label();
  34. this.tbxLastname = new System.Windows.Forms.TextBox();
  35. this.tbxAge = new System.Windows.Forms.TextBox();
  36. this.btnBrowseFile = new System.Windows.Forms.Button();
  37. this.lblFilename = new System.Windows.Forms.Label();
  38. this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
  39. this.SuspendLayout();
  40. //
  41. // btnSave
  42. //
  43. this.btnSave.Location = new System.Drawing.Point(12, 119);
  44. this.btnSave.Name = "btnSave";
  45. this.btnSave.Size = new System.Drawing.Size(318, 23);
  46. this.btnSave.TabIndex = 0;
  47. this.btnSave.Text = "Сохранить в реестре";
  48. this.btnSave.UseVisualStyleBackColor = true;
  49. this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
  50. //
  51. // btnRead
  52. //
  53. this.btnRead.Location = new System.Drawing.Point(12, 148);
  54. this.btnRead.Name = "btnRead";
  55. this.btnRead.Size = new System.Drawing.Size(318, 23);
  56. this.btnRead.TabIndex = 1;
  57. this.btnRead.Text = "Прочитать из реестра";
  58. this.btnRead.UseVisualStyleBackColor = true;
  59. this.btnRead.Click += new System.EventHandler(this.btnRead_Click);
  60. //
  61. // btnRemoveValue
  62. //
  63. this.btnRemoveValue.Location = new System.Drawing.Point(12, 177);
  64. this.btnRemoveValue.Name = "btnRemoveValue";
  65. this.btnRemoveValue.Size = new System.Drawing.Size(318, 23);
  66. this.btnRemoveValue.TabIndex = 2;
  67. this.btnRemoveValue.Text = "Удалить данные";
  68. this.btnRemoveValue.UseVisualStyleBackColor = true;
  69. this.btnRemoveValue.Click += new System.EventHandler(this.btnRemoveValue_Click);
  70. //
  71. // btnRemoveKey
  72. //
  73. this.btnRemoveKey.Location = new System.Drawing.Point(12, 206);
  74. this.btnRemoveKey.Name = "btnRemoveKey";
  75. this.btnRemoveKey.Size = new System.Drawing.Size(318, 23);
  76. this.btnRemoveKey.TabIndex = 3;
  77. this.btnRemoveKey.Text = "Удалить ключ";
  78. this.btnRemoveKey.UseVisualStyleBackColor = true;
  79. this.btnRemoveKey.Click += new System.EventHandler(this.btnRemoveKey_Click);
  80. //
  81. // label1
  82. //
  83. this.label1.AutoSize = true;
  84. this.label1.Location = new System.Drawing.Point(55, 9);
  85. this.label1.Name = "label1";
  86. this.label1.Size = new System.Drawing.Size(59, 13);
  87. this.label1.TabIndex = 4;
  88. this.label1.Text = "Фамилия:";
  89. //
  90. // label2
  91. //
  92. this.label2.AutoSize = true;
  93. this.label2.Location = new System.Drawing.Point(55, 46);
  94. this.label2.Name = "label2";
  95. this.label2.Size = new System.Drawing.Size(52, 13);
  96. this.label2.TabIndex = 5;
  97. this.label2.Text = "Возраст:";
  98. //
  99. // tbxLastname
  100. //
  101. this.tbxLastname.Location = new System.Drawing.Point(120, 9);
  102. this.tbxLastname.Name = "tbxLastname";
  103. this.tbxLastname.Size = new System.Drawing.Size(210, 20);
  104. this.tbxLastname.TabIndex = 6;
  105. //
  106. // tbxAge
  107. //
  108. this.tbxAge.Location = new System.Drawing.Point(120, 46);
  109. this.tbxAge.Name = "tbxAge";
  110. this.tbxAge.Size = new System.Drawing.Size(210, 20);
  111. this.tbxAge.TabIndex = 7;
  112. //
  113. // btnBrowseFile
  114. //
  115. this.btnBrowseFile.Location = new System.Drawing.Point(15, 78);
  116. this.btnBrowseFile.Name = "btnBrowseFile";
  117. this.btnBrowseFile.Size = new System.Drawing.Size(21, 23);
  118. this.btnBrowseFile.TabIndex = 8;
  119. this.btnBrowseFile.Text = "+";
  120. this.btnBrowseFile.UseVisualStyleBackColor = true;
  121. this.btnBrowseFile.Click += new System.EventHandler(this.btnBrowseFile_Click);
  122. //
  123. // lblFilename
  124. //
  125. this.lblFilename.AutoSize = true;
  126. this.lblFilename.Location = new System.Drawing.Point(42, 83);
  127. this.lblFilename.Name = "lblFilename";
  128. this.lblFilename.Size = new System.Drawing.Size(72, 13);
  129. this.lblFilename.TabIndex = 9;
  130. this.lblFilename.Text = "Аудио файл: ";
  131. //
  132. // Form1
  133. //
  134. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  135. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  136. this.ClientSize = new System.Drawing.Size(348, 241);
  137. this.Controls.Add(this.lblFilename);
  138. this.Controls.Add(this.btnBrowseFile);
  139. this.Controls.Add(this.tbxAge);
  140. this.Controls.Add(this.tbxLastname);
  141. this.Controls.Add(this.label2);
  142. this.Controls.Add(this.label1);
  143. this.Controls.Add(this.btnRemoveKey);
  144. this.Controls.Add(this.btnRemoveValue);
  145. this.Controls.Add(this.btnRead);
  146. this.Controls.Add(this.btnSave);
  147. this.Name = "Form1";
  148. this.Text = "Form1";
  149. this.ResumeLayout(false);
  150. this.PerformLayout();
  151. }
  152. #endregion
  153. private System.Windows.Forms.Button btnSave;
  154. private System.Windows.Forms.Button btnRead;
  155. private System.Windows.Forms.Button btnRemoveValue;
  156. private System.Windows.Forms.Button btnRemoveKey;
  157. private System.Windows.Forms.Label label1;
  158. private System.Windows.Forms.Label label2;
  159. private System.Windows.Forms.TextBox tbxLastname;
  160. private System.Windows.Forms.TextBox tbxAge;
  161. private System.Windows.Forms.Button btnBrowseFile;
  162. private System.Windows.Forms.Label lblFilename;
  163. private System.Windows.Forms.OpenFileDialog openFileDialog;
  164. }
  165. }