Form1.Designer.cs 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278
  1. namespace WindowsFormsApp1
  2. {
  3. partial class Form1
  4. {
  5. /// <summary>
  6. /// Обязательная переменная конструктора.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Освободить все используемые ресурсы.
  11. /// </summary>
  12. /// <param name="disposing">истинно, если управляемый ресурс должен быть удален; иначе ложно.</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
  22. /// <summary>
  23. /// Требуемый метод для поддержки конструктора — не изменяйте
  24. /// содержимое этого метода с помощью редактора кода.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.dataGridView1 = new System.Windows.Forms.DataGridView();
  29. this.txtCode = new System.Windows.Forms.TextBox();
  30. this.txtLastName = new System.Windows.Forms.TextBox();
  31. this.txtFirstName = new System.Windows.Forms.TextBox();
  32. this.txtPhone = new System.Windows.Forms.TextBox();
  33. this.txtSearch = new System.Windows.Forms.TextBox();
  34. this.btnLoad = new System.Windows.Forms.Button();
  35. this.btnAdd = new System.Windows.Forms.Button();
  36. this.btnEdit = new System.Windows.Forms.Button();
  37. this.btnDelete = new System.Windows.Forms.Button();
  38. this.btnSearch = new System.Windows.Forms.Button();
  39. this.btnExport = new System.Windows.Forms.Button();
  40. this.cmbTables = new System.Windows.Forms.ComboBox();
  41. this.label1 = new System.Windows.Forms.Label();
  42. this.label2 = new System.Windows.Forms.Label();
  43. this.label3 = new System.Windows.Forms.Label();
  44. this.label4 = new System.Windows.Forms.Label();
  45. this.label5 = new System.Windows.Forms.Label();
  46. this.label6 = new System.Windows.Forms.Label();
  47. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
  48. this.SuspendLayout();
  49. //
  50. // dataGridView1
  51. //
  52. this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  53. this.dataGridView1.Location = new System.Drawing.Point(12, 55);
  54. this.dataGridView1.Name = "dataGridView1";
  55. this.dataGridView1.RowHeadersWidth = 51;
  56. this.dataGridView1.RowTemplate.Height = 24;
  57. this.dataGridView1.Size = new System.Drawing.Size(966, 285);
  58. this.dataGridView1.TabIndex = 0;
  59. this.dataGridView1.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellClick);
  60. //
  61. // txtCode
  62. //
  63. this.txtCode.Location = new System.Drawing.Point(178, 396);
  64. this.txtCode.Name = "txtCode";
  65. this.txtCode.Size = new System.Drawing.Size(121, 22);
  66. this.txtCode.TabIndex = 1;
  67. //
  68. // txtLastName
  69. //
  70. this.txtLastName.Location = new System.Drawing.Point(333, 395);
  71. this.txtLastName.Name = "txtLastName";
  72. this.txtLastName.Size = new System.Drawing.Size(145, 22);
  73. this.txtLastName.TabIndex = 2;
  74. //
  75. // txtFirstName
  76. //
  77. this.txtFirstName.Location = new System.Drawing.Point(515, 394);
  78. this.txtFirstName.Name = "txtFirstName";
  79. this.txtFirstName.Size = new System.Drawing.Size(143, 22);
  80. this.txtFirstName.TabIndex = 3;
  81. this.txtFirstName.TextChanged += new System.EventHandler(this.txtFirstName_TextChanged);
  82. //
  83. // txtPhone
  84. //
  85. this.txtPhone.Location = new System.Drawing.Point(695, 393);
  86. this.txtPhone.Name = "txtPhone";
  87. this.txtPhone.Size = new System.Drawing.Size(145, 22);
  88. this.txtPhone.TabIndex = 4;
  89. //
  90. // txtSearch
  91. //
  92. this.txtSearch.Location = new System.Drawing.Point(12, 19);
  93. this.txtSearch.Name = "txtSearch";
  94. this.txtSearch.Size = new System.Drawing.Size(426, 22);
  95. this.txtSearch.TabIndex = 5;
  96. this.txtSearch.TextChanged += new System.EventHandler(this.txtSearch_TextChanged);
  97. //
  98. // btnLoad
  99. //
  100. this.btnLoad.Location = new System.Drawing.Point(185, 453);
  101. this.btnLoad.Name = "btnLoad";
  102. this.btnLoad.Size = new System.Drawing.Size(99, 32);
  103. this.btnLoad.TabIndex = 6;
  104. this.btnLoad.Text = "Загрузить";
  105. this.btnLoad.UseVisualStyleBackColor = true;
  106. this.btnLoad.Click += new System.EventHandler(this.btnLoad_Click);
  107. //
  108. // btnAdd
  109. //
  110. this.btnAdd.Location = new System.Drawing.Point(312, 454);
  111. this.btnAdd.Name = "btnAdd";
  112. this.btnAdd.Size = new System.Drawing.Size(94, 32);
  113. this.btnAdd.TabIndex = 7;
  114. this.btnAdd.Text = "Добавить";
  115. this.btnAdd.UseVisualStyleBackColor = true;
  116. this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
  117. //
  118. // btnEdit
  119. //
  120. this.btnEdit.Location = new System.Drawing.Point(432, 454);
  121. this.btnEdit.Name = "btnEdit";
  122. this.btnEdit.Size = new System.Drawing.Size(96, 32);
  123. this.btnEdit.TabIndex = 8;
  124. this.btnEdit.Text = "Изменить";
  125. this.btnEdit.UseVisualStyleBackColor = true;
  126. this.btnEdit.Click += new System.EventHandler(this.btnEdit_Click);
  127. //
  128. // btnDelete
  129. //
  130. this.btnDelete.Location = new System.Drawing.Point(555, 454);
  131. this.btnDelete.Name = "btnDelete";
  132. this.btnDelete.Size = new System.Drawing.Size(96, 32);
  133. this.btnDelete.TabIndex = 9;
  134. this.btnDelete.Text = "Удалить";
  135. this.btnDelete.UseVisualStyleBackColor = true;
  136. this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
  137. //
  138. // btnSearch
  139. //
  140. this.btnSearch.Location = new System.Drawing.Point(444, 16);
  141. this.btnSearch.Name = "btnSearch";
  142. this.btnSearch.Size = new System.Drawing.Size(96, 28);
  143. this.btnSearch.TabIndex = 10;
  144. this.btnSearch.Text = "Поиск";
  145. this.btnSearch.UseVisualStyleBackColor = true;
  146. this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
  147. //
  148. // btnExport
  149. //
  150. this.btnExport.Location = new System.Drawing.Point(675, 454);
  151. this.btnExport.Name = "btnExport";
  152. this.btnExport.Size = new System.Drawing.Size(100, 32);
  153. this.btnExport.TabIndex = 11;
  154. this.btnExport.Text = "Экспорт";
  155. this.btnExport.UseVisualStyleBackColor = true;
  156. this.btnExport.Click += new System.EventHandler(this.btnExport_Click_1);
  157. //
  158. // cmbTables
  159. //
  160. this.cmbTables.FormattingEnabled = true;
  161. this.cmbTables.Location = new System.Drawing.Point(12, 395);
  162. this.cmbTables.Name = "cmbTables";
  163. this.cmbTables.Size = new System.Drawing.Size(121, 24);
  164. this.cmbTables.TabIndex = 12;
  165. this.cmbTables.SelectedIndexChanged += new System.EventHandler(this.cmbTables_SelectedIndexChanged);
  166. //
  167. // label1
  168. //
  169. this.label1.AutoSize = true;
  170. this.label1.Location = new System.Drawing.Point(12, 373);
  171. this.label1.Name = "label1";
  172. this.label1.Size = new System.Drawing.Size(65, 16);
  173. this.label1.TabIndex = 13;
  174. this.label1.Text = "Таблицы";
  175. //
  176. // label2
  177. //
  178. this.label2.AutoSize = true;
  179. this.label2.Location = new System.Drawing.Point(179, 374);
  180. this.label2.Name = "label2";
  181. this.label2.Size = new System.Drawing.Size(31, 16);
  182. this.label2.TabIndex = 14;
  183. this.label2.Text = "Код";
  184. //
  185. // label3
  186. //
  187. this.label3.Location = new System.Drawing.Point(0, 0);
  188. this.label3.Name = "label3";
  189. this.label3.Size = new System.Drawing.Size(100, 23);
  190. this.label3.TabIndex = 0;
  191. //
  192. // label4
  193. //
  194. this.label4.AutoSize = true;
  195. this.label4.Location = new System.Drawing.Point(333, 374);
  196. this.label4.Name = "label4";
  197. this.label4.Size = new System.Drawing.Size(66, 16);
  198. this.label4.TabIndex = 15;
  199. this.label4.Text = "Фамилия";
  200. //
  201. // label5
  202. //
  203. this.label5.AutoSize = true;
  204. this.label5.Location = new System.Drawing.Point(518, 372);
  205. this.label5.Name = "label5";
  206. this.label5.Size = new System.Drawing.Size(33, 16);
  207. this.label5.TabIndex = 16;
  208. this.label5.Text = "Имя";
  209. //
  210. // label6
  211. //
  212. this.label6.AutoSize = true;
  213. this.label6.Location = new System.Drawing.Point(695, 373);
  214. this.label6.Name = "label6";
  215. this.label6.Size = new System.Drawing.Size(67, 16);
  216. this.label6.TabIndex = 17;
  217. this.label6.Text = "Телефон";
  218. //
  219. // Form1
  220. //
  221. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
  222. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  223. this.ClientSize = new System.Drawing.Size(990, 645);
  224. this.Controls.Add(this.txtSearch);
  225. this.Controls.Add(this.label6);
  226. this.Controls.Add(this.label5);
  227. this.Controls.Add(this.label4);
  228. this.Controls.Add(this.label3);
  229. this.Controls.Add(this.label2);
  230. this.Controls.Add(this.label1);
  231. this.Controls.Add(this.cmbTables);
  232. this.Controls.Add(this.btnExport);
  233. this.Controls.Add(this.btnSearch);
  234. this.Controls.Add(this.btnDelete);
  235. this.Controls.Add(this.btnEdit);
  236. this.Controls.Add(this.btnAdd);
  237. this.Controls.Add(this.btnLoad);
  238. this.Controls.Add(this.txtPhone);
  239. this.Controls.Add(this.txtFirstName);
  240. this.Controls.Add(this.txtLastName);
  241. this.Controls.Add(this.txtCode);
  242. this.Controls.Add(this.dataGridView1);
  243. this.Name = "Form1";
  244. this.Text = "Form1";
  245. this.Load += new System.EventHandler(this.Form1_Load);
  246. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
  247. this.ResumeLayout(false);
  248. this.PerformLayout();
  249. }
  250. #endregion
  251. private System.Windows.Forms.DataGridView dataGridView1;
  252. private System.Windows.Forms.TextBox txtCode;
  253. private System.Windows.Forms.TextBox txtLastName;
  254. private System.Windows.Forms.TextBox txtFirstName;
  255. private System.Windows.Forms.TextBox txtPhone;
  256. private System.Windows.Forms.TextBox txtSearch;
  257. private System.Windows.Forms.Button btnLoad;
  258. private System.Windows.Forms.Button btnAdd;
  259. private System.Windows.Forms.Button btnEdit;
  260. private System.Windows.Forms.Button btnDelete;
  261. private System.Windows.Forms.Button btnSearch;
  262. private System.Windows.Forms.Button btnExport;
  263. private System.Windows.Forms.ComboBox cmbTables;
  264. private System.Windows.Forms.Label label1;
  265. private System.Windows.Forms.Label label2;
  266. private System.Windows.Forms.Label label3;
  267. private System.Windows.Forms.Label label4;
  268. private System.Windows.Forms.Label label5;
  269. private System.Windows.Forms.Label label6;
  270. }
  271. }