MainForm.Designer.cs 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531
  1. namespace SimpleDBViewer
  2. {
  3. partial class MainForm
  4. {
  5. private System.ComponentModel.IContainer components = null;
  6. private System.Windows.Forms.Panel pnlHeader;
  7. private System.Windows.Forms.Label lblTitle;
  8. private System.Windows.Forms.Label lblUser;
  9. private System.Windows.Forms.Button btnLogout;
  10. private System.Windows.Forms.TabControl tabControl;
  11. private System.Windows.Forms.TabPage tabTables;
  12. private System.Windows.Forms.TabPage tabSearch;
  13. private System.Windows.Forms.Panel pnlTablesTop;
  14. private System.Windows.Forms.Label lblTableCaption;
  15. private System.Windows.Forms.ComboBox cmbTables;
  16. private System.Windows.Forms.Button btnRefresh;
  17. private System.Windows.Forms.Button btnAdd;
  18. private System.Windows.Forms.Button btnEdit;
  19. private System.Windows.Forms.Button btnDelete;
  20. private System.Windows.Forms.Button btnExportTable;
  21. private System.Windows.Forms.Label lblTableStatus;
  22. private System.Windows.Forms.DataGridView dgvTables;
  23. private System.Windows.Forms.Panel pnlSearchTop;
  24. private System.Windows.Forms.Label lblDriverFilter;
  25. private System.Windows.Forms.TextBox txtDriverFilter;
  26. private System.Windows.Forms.Label lblSchoolFilter;
  27. private System.Windows.Forms.TextBox txtSchoolFilter;
  28. private System.Windows.Forms.Label lblResultFilter;
  29. private System.Windows.Forms.ComboBox cmbResultFilter;
  30. private System.Windows.Forms.Label lblDateFrom;
  31. private System.Windows.Forms.DateTimePicker dtFrom;
  32. private System.Windows.Forms.Label lblDateTo;
  33. private System.Windows.Forms.DateTimePicker dtTo;
  34. private System.Windows.Forms.Button btnSearch;
  35. private System.Windows.Forms.Button btnReset;
  36. private System.Windows.Forms.Button btnExportSearch;
  37. private System.Windows.Forms.DataGridView dgvSearch;
  38. protected override void Dispose(bool disposing)
  39. {
  40. if (disposing && (components != null))
  41. {
  42. components.Dispose();
  43. }
  44. base.Dispose(disposing);
  45. }
  46. private void InitializeComponent()
  47. {
  48. this.pnlHeader = new System.Windows.Forms.Panel();
  49. this.btnLogout = new System.Windows.Forms.Button();
  50. this.lblUser = new System.Windows.Forms.Label();
  51. this.lblTitle = new System.Windows.Forms.Label();
  52. this.tabControl = new System.Windows.Forms.TabControl();
  53. this.tabTables = new System.Windows.Forms.TabPage();
  54. this.dgvTables = new System.Windows.Forms.DataGridView();
  55. this.pnlTablesTop = new System.Windows.Forms.Panel();
  56. this.lblTableStatus = new System.Windows.Forms.Label();
  57. this.btnExportTable = new System.Windows.Forms.Button();
  58. this.btnDelete = new System.Windows.Forms.Button();
  59. this.btnEdit = new System.Windows.Forms.Button();
  60. this.btnAdd = new System.Windows.Forms.Button();
  61. this.btnRefresh = new System.Windows.Forms.Button();
  62. this.cmbTables = new System.Windows.Forms.ComboBox();
  63. this.lblTableCaption = new System.Windows.Forms.Label();
  64. this.tabSearch = new System.Windows.Forms.TabPage();
  65. this.dgvSearch = new System.Windows.Forms.DataGridView();
  66. this.pnlSearchTop = new System.Windows.Forms.Panel();
  67. this.btnExportSearch = new System.Windows.Forms.Button();
  68. this.btnReset = new System.Windows.Forms.Button();
  69. this.btnSearch = new System.Windows.Forms.Button();
  70. this.dtTo = new System.Windows.Forms.DateTimePicker();
  71. this.lblDateTo = new System.Windows.Forms.Label();
  72. this.dtFrom = new System.Windows.Forms.DateTimePicker();
  73. this.lblDateFrom = new System.Windows.Forms.Label();
  74. this.cmbResultFilter = new System.Windows.Forms.ComboBox();
  75. this.lblResultFilter = new System.Windows.Forms.Label();
  76. this.txtSchoolFilter = new System.Windows.Forms.TextBox();
  77. this.lblSchoolFilter = new System.Windows.Forms.Label();
  78. this.txtDriverFilter = new System.Windows.Forms.TextBox();
  79. this.lblDriverFilter = new System.Windows.Forms.Label();
  80. this.pnlHeader.SuspendLayout();
  81. this.tabControl.SuspendLayout();
  82. this.tabTables.SuspendLayout();
  83. ((System.ComponentModel.ISupportInitialize)(this.dgvTables)).BeginInit();
  84. this.pnlTablesTop.SuspendLayout();
  85. this.tabSearch.SuspendLayout();
  86. ((System.ComponentModel.ISupportInitialize)(this.dgvSearch)).BeginInit();
  87. this.pnlSearchTop.SuspendLayout();
  88. this.SuspendLayout();
  89. //
  90. // pnlHeader
  91. //
  92. this.pnlHeader.BackColor = System.Drawing.Color.FromArgb(30, 58, 84);
  93. this.pnlHeader.Controls.Add(this.btnLogout);
  94. this.pnlHeader.Controls.Add(this.lblUser);
  95. this.pnlHeader.Controls.Add(this.lblTitle);
  96. this.pnlHeader.Dock = System.Windows.Forms.DockStyle.Top;
  97. this.pnlHeader.Location = new System.Drawing.Point(0, 0);
  98. this.pnlHeader.Name = "pnlHeader";
  99. this.pnlHeader.Size = new System.Drawing.Size(1180, 76);
  100. this.pnlHeader.TabIndex = 0;
  101. //
  102. // btnLogout
  103. //
  104. this.btnLogout.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  105. this.btnLogout.BackColor = System.Drawing.Color.FromArgb(226, 232, 240);
  106. this.btnLogout.FlatAppearance.BorderSize = 0;
  107. this.btnLogout.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  108. this.btnLogout.Font = new System.Drawing.Font("Segoe UI", 9.5F, System.Drawing.FontStyle.Bold);
  109. this.btnLogout.ForeColor = System.Drawing.Color.FromArgb(30, 58, 84);
  110. this.btnLogout.Location = new System.Drawing.Point(1054, 21);
  111. this.btnLogout.Name = "btnLogout";
  112. this.btnLogout.Size = new System.Drawing.Size(104, 34);
  113. this.btnLogout.TabIndex = 2;
  114. this.btnLogout.Text = "Выйти";
  115. this.btnLogout.UseVisualStyleBackColor = false;
  116. this.btnLogout.Click += new System.EventHandler(this.BtnLogout_Click);
  117. //
  118. // lblUser
  119. //
  120. this.lblUser.AutoSize = true;
  121. this.lblUser.Font = new System.Drawing.Font("Segoe UI", 10F);
  122. this.lblUser.ForeColor = System.Drawing.Color.FromArgb(226, 232, 240);
  123. this.lblUser.Location = new System.Drawing.Point(29, 48);
  124. this.lblUser.Name = "lblUser";
  125. this.lblUser.Size = new System.Drawing.Size(0, 19);
  126. this.lblUser.TabIndex = 1;
  127. //
  128. // lblTitle
  129. //
  130. this.lblTitle.AutoSize = true;
  131. this.lblTitle.Font = new System.Drawing.Font("Segoe UI", 18F, System.Drawing.FontStyle.Bold);
  132. this.lblTitle.ForeColor = System.Drawing.Color.White;
  133. this.lblTitle.Location = new System.Drawing.Point(26, 13);
  134. this.lblTitle.Name = "lblTitle";
  135. this.lblTitle.Size = new System.Drawing.Size(142, 32);
  136. this.lblTitle.TabIndex = 0;
  137. this.lblTitle.Text = "Автошкола";
  138. //
  139. // tabControl
  140. //
  141. this.tabControl.Controls.Add(this.tabTables);
  142. this.tabControl.Controls.Add(this.tabSearch);
  143. this.tabControl.Dock = System.Windows.Forms.DockStyle.Fill;
  144. this.tabControl.Location = new System.Drawing.Point(0, 76);
  145. this.tabControl.Name = "tabControl";
  146. this.tabControl.SelectedIndex = 0;
  147. this.tabControl.Size = new System.Drawing.Size(1180, 684);
  148. this.tabControl.TabIndex = 1;
  149. //
  150. // tabTables
  151. //
  152. this.tabTables.BackColor = System.Drawing.Color.FromArgb(248, 250, 252);
  153. this.tabTables.Controls.Add(this.dgvTables);
  154. this.tabTables.Controls.Add(this.pnlTablesTop);
  155. this.tabTables.Location = new System.Drawing.Point(4, 26);
  156. this.tabTables.Name = "tabTables";
  157. this.tabTables.Padding = new System.Windows.Forms.Padding(14);
  158. this.tabTables.Size = new System.Drawing.Size(1172, 654);
  159. this.tabTables.TabIndex = 0;
  160. this.tabTables.Text = "Данные";
  161. //
  162. // dgvTables
  163. //
  164. this.dgvTables.AllowUserToAddRows = false;
  165. this.dgvTables.AllowUserToDeleteRows = false;
  166. this.dgvTables.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
  167. this.dgvTables.BackgroundColor = System.Drawing.Color.White;
  168. this.dgvTables.BorderStyle = System.Windows.Forms.BorderStyle.None;
  169. this.dgvTables.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  170. this.dgvTables.Dock = System.Windows.Forms.DockStyle.Fill;
  171. this.dgvTables.EnableHeadersVisualStyles = false;
  172. this.dgvTables.GridColor = System.Drawing.Color.FromArgb(226, 232, 240);
  173. this.dgvTables.Location = new System.Drawing.Point(14, 96);
  174. this.dgvTables.MultiSelect = false;
  175. this.dgvTables.Name = "dgvTables";
  176. this.dgvTables.ReadOnly = true;
  177. this.dgvTables.RowHeadersVisible = false;
  178. this.dgvTables.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  179. this.dgvTables.Size = new System.Drawing.Size(1144, 544);
  180. this.dgvTables.TabIndex = 1;
  181. //
  182. // pnlTablesTop
  183. //
  184. this.pnlTablesTop.BackColor = System.Drawing.Color.FromArgb(248, 250, 252);
  185. this.pnlTablesTop.Controls.Add(this.lblTableStatus);
  186. this.pnlTablesTop.Controls.Add(this.btnExportTable);
  187. this.pnlTablesTop.Controls.Add(this.btnDelete);
  188. this.pnlTablesTop.Controls.Add(this.btnEdit);
  189. this.pnlTablesTop.Controls.Add(this.btnAdd);
  190. this.pnlTablesTop.Controls.Add(this.btnRefresh);
  191. this.pnlTablesTop.Controls.Add(this.cmbTables);
  192. this.pnlTablesTop.Controls.Add(this.lblTableCaption);
  193. this.pnlTablesTop.Dock = System.Windows.Forms.DockStyle.Top;
  194. this.pnlTablesTop.Location = new System.Drawing.Point(14, 14);
  195. this.pnlTablesTop.Name = "pnlTablesTop";
  196. this.pnlTablesTop.Size = new System.Drawing.Size(1144, 82);
  197. this.pnlTablesTop.TabIndex = 0;
  198. //
  199. // lblTableStatus
  200. //
  201. this.lblTableStatus.AutoSize = true;
  202. this.lblTableStatus.ForeColor = System.Drawing.Color.FromArgb(100, 116, 139);
  203. this.lblTableStatus.Location = new System.Drawing.Point(0, 55);
  204. this.lblTableStatus.Name = "lblTableStatus";
  205. this.lblTableStatus.Size = new System.Drawing.Size(0, 17);
  206. this.lblTableStatus.TabIndex = 7;
  207. //
  208. // btnExportTable
  209. //
  210. this.btnExportTable.BackColor = System.Drawing.Color.FromArgb(71, 85, 105);
  211. this.btnExportTable.FlatAppearance.BorderSize = 0;
  212. this.btnExportTable.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  213. this.btnExportTable.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold);
  214. this.btnExportTable.ForeColor = System.Drawing.Color.White;
  215. this.btnExportTable.Location = new System.Drawing.Point(826, 8);
  216. this.btnExportTable.Name = "btnExportTable";
  217. this.btnExportTable.Size = new System.Drawing.Size(120, 34);
  218. this.btnExportTable.TabIndex = 6;
  219. this.btnExportTable.Text = "Отчёт CSV";
  220. this.btnExportTable.UseVisualStyleBackColor = false;
  221. this.btnExportTable.Click += new System.EventHandler(this.BtnExportTable_Click);
  222. //
  223. // btnDelete
  224. //
  225. this.btnDelete.BackColor = System.Drawing.Color.FromArgb(239, 68, 68);
  226. this.btnDelete.FlatAppearance.BorderSize = 0;
  227. this.btnDelete.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  228. this.btnDelete.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold);
  229. this.btnDelete.ForeColor = System.Drawing.Color.White;
  230. this.btnDelete.Location = new System.Drawing.Point(714, 8);
  231. this.btnDelete.Name = "btnDelete";
  232. this.btnDelete.Size = new System.Drawing.Size(100, 34);
  233. this.btnDelete.TabIndex = 5;
  234. this.btnDelete.Text = "Удалить";
  235. this.btnDelete.UseVisualStyleBackColor = false;
  236. this.btnDelete.Click += new System.EventHandler(this.BtnDelete_Click);
  237. //
  238. // btnEdit
  239. //
  240. this.btnEdit.BackColor = System.Drawing.Color.FromArgb(245, 158, 11);
  241. this.btnEdit.FlatAppearance.BorderSize = 0;
  242. this.btnEdit.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  243. this.btnEdit.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold);
  244. this.btnEdit.ForeColor = System.Drawing.Color.White;
  245. this.btnEdit.Location = new System.Drawing.Point(602, 8);
  246. this.btnEdit.Name = "btnEdit";
  247. this.btnEdit.Size = new System.Drawing.Size(100, 34);
  248. this.btnEdit.TabIndex = 4;
  249. this.btnEdit.Text = "Изменить";
  250. this.btnEdit.UseVisualStyleBackColor = false;
  251. this.btnEdit.Click += new System.EventHandler(this.BtnEdit_Click);
  252. //
  253. // btnAdd
  254. //
  255. this.btnAdd.BackColor = System.Drawing.Color.FromArgb(34, 197, 94);
  256. this.btnAdd.FlatAppearance.BorderSize = 0;
  257. this.btnAdd.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  258. this.btnAdd.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold);
  259. this.btnAdd.ForeColor = System.Drawing.Color.White;
  260. this.btnAdd.Location = new System.Drawing.Point(490, 8);
  261. this.btnAdd.Name = "btnAdd";
  262. this.btnAdd.Size = new System.Drawing.Size(100, 34);
  263. this.btnAdd.TabIndex = 3;
  264. this.btnAdd.Text = "Добавить";
  265. this.btnAdd.UseVisualStyleBackColor = false;
  266. this.btnAdd.Click += new System.EventHandler(this.BtnAdd_Click);
  267. //
  268. // btnRefresh
  269. //
  270. this.btnRefresh.BackColor = System.Drawing.Color.FromArgb(14, 165, 233);
  271. this.btnRefresh.FlatAppearance.BorderSize = 0;
  272. this.btnRefresh.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  273. this.btnRefresh.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold);
  274. this.btnRefresh.ForeColor = System.Drawing.Color.White;
  275. this.btnRefresh.Location = new System.Drawing.Point(378, 8);
  276. this.btnRefresh.Name = "btnRefresh";
  277. this.btnRefresh.Size = new System.Drawing.Size(100, 34);
  278. this.btnRefresh.TabIndex = 2;
  279. this.btnRefresh.Text = "Обновить";
  280. this.btnRefresh.UseVisualStyleBackColor = false;
  281. this.btnRefresh.Click += new System.EventHandler(this.BtnRefresh_Click);
  282. //
  283. // cmbTables
  284. //
  285. this.cmbTables.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  286. this.cmbTables.FormattingEnabled = true;
  287. this.cmbTables.Location = new System.Drawing.Point(68, 12);
  288. this.cmbTables.Name = "cmbTables";
  289. this.cmbTables.Size = new System.Drawing.Size(285, 25);
  290. this.cmbTables.TabIndex = 1;
  291. this.cmbTables.SelectedIndexChanged += new System.EventHandler(this.CmbTables_SelectedIndexChanged);
  292. //
  293. // lblTableCaption
  294. //
  295. this.lblTableCaption.AutoSize = true;
  296. this.lblTableCaption.ForeColor = System.Drawing.Color.FromArgb(51, 65, 85);
  297. this.lblTableCaption.Location = new System.Drawing.Point(0, 15);
  298. this.lblTableCaption.Name = "lblTableCaption";
  299. this.lblTableCaption.Size = new System.Drawing.Size(53, 17);
  300. this.lblTableCaption.TabIndex = 0;
  301. this.lblTableCaption.Text = "Раздел";
  302. //
  303. // tabSearch
  304. //
  305. this.tabSearch.BackColor = System.Drawing.Color.FromArgb(248, 250, 252);
  306. this.tabSearch.Controls.Add(this.dgvSearch);
  307. this.tabSearch.Controls.Add(this.pnlSearchTop);
  308. this.tabSearch.Location = new System.Drawing.Point(4, 26);
  309. this.tabSearch.Name = "tabSearch";
  310. this.tabSearch.Padding = new System.Windows.Forms.Padding(14);
  311. this.tabSearch.Size = new System.Drawing.Size(1172, 654);
  312. this.tabSearch.TabIndex = 1;
  313. this.tabSearch.Text = "Поиск экзаменов";
  314. //
  315. // dgvSearch
  316. //
  317. this.dgvSearch.AllowUserToAddRows = false;
  318. this.dgvSearch.AllowUserToDeleteRows = false;
  319. this.dgvSearch.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
  320. this.dgvSearch.BackgroundColor = System.Drawing.Color.White;
  321. this.dgvSearch.BorderStyle = System.Windows.Forms.BorderStyle.None;
  322. this.dgvSearch.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  323. this.dgvSearch.Dock = System.Windows.Forms.DockStyle.Fill;
  324. this.dgvSearch.EnableHeadersVisualStyles = false;
  325. this.dgvSearch.GridColor = System.Drawing.Color.FromArgb(226, 232, 240);
  326. this.dgvSearch.Location = new System.Drawing.Point(14, 116);
  327. this.dgvSearch.MultiSelect = false;
  328. this.dgvSearch.Name = "dgvSearch";
  329. this.dgvSearch.ReadOnly = true;
  330. this.dgvSearch.RowHeadersVisible = false;
  331. this.dgvSearch.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  332. this.dgvSearch.Size = new System.Drawing.Size(1144, 524);
  333. this.dgvSearch.TabIndex = 1;
  334. //
  335. // pnlSearchTop
  336. //
  337. this.pnlSearchTop.BackColor = System.Drawing.Color.FromArgb(248, 250, 252);
  338. this.pnlSearchTop.Controls.Add(this.btnExportSearch);
  339. this.pnlSearchTop.Controls.Add(this.btnReset);
  340. this.pnlSearchTop.Controls.Add(this.btnSearch);
  341. this.pnlSearchTop.Controls.Add(this.dtTo);
  342. this.pnlSearchTop.Controls.Add(this.lblDateTo);
  343. this.pnlSearchTop.Controls.Add(this.dtFrom);
  344. this.pnlSearchTop.Controls.Add(this.lblDateFrom);
  345. this.pnlSearchTop.Controls.Add(this.cmbResultFilter);
  346. this.pnlSearchTop.Controls.Add(this.lblResultFilter);
  347. this.pnlSearchTop.Controls.Add(this.txtSchoolFilter);
  348. this.pnlSearchTop.Controls.Add(this.lblSchoolFilter);
  349. this.pnlSearchTop.Controls.Add(this.txtDriverFilter);
  350. this.pnlSearchTop.Controls.Add(this.lblDriverFilter);
  351. this.pnlSearchTop.Dock = System.Windows.Forms.DockStyle.Top;
  352. this.pnlSearchTop.Location = new System.Drawing.Point(14, 14);
  353. this.pnlSearchTop.Name = "pnlSearchTop";
  354. this.pnlSearchTop.Size = new System.Drawing.Size(1144, 102);
  355. this.pnlSearchTop.TabIndex = 0;
  356. //
  357. // btnExportSearch
  358. //
  359. this.btnExportSearch.BackColor = System.Drawing.Color.FromArgb(71, 85, 105);
  360. this.btnExportSearch.FlatAppearance.BorderSize = 0;
  361. this.btnExportSearch.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  362. this.btnExportSearch.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold);
  363. this.btnExportSearch.ForeColor = System.Drawing.Color.White;
  364. this.btnExportSearch.Location = new System.Drawing.Point(258, 58);
  365. this.btnExportSearch.Name = "btnExportSearch";
  366. this.btnExportSearch.Size = new System.Drawing.Size(120, 34);
  367. this.btnExportSearch.TabIndex = 12;
  368. this.btnExportSearch.Text = "Отчёт CSV";
  369. this.btnExportSearch.UseVisualStyleBackColor = false;
  370. this.btnExportSearch.Click += new System.EventHandler(this.BtnExportSearch_Click);
  371. //
  372. // btnReset
  373. //
  374. this.btnReset.BackColor = System.Drawing.Color.FromArgb(100, 116, 139);
  375. this.btnReset.FlatAppearance.BorderSize = 0;
  376. this.btnReset.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  377. this.btnReset.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold);
  378. this.btnReset.ForeColor = System.Drawing.Color.White;
  379. this.btnReset.Location = new System.Drawing.Point(132, 58);
  380. this.btnReset.Name = "btnReset";
  381. this.btnReset.Size = new System.Drawing.Size(110, 34);
  382. this.btnReset.TabIndex = 11;
  383. this.btnReset.Text = "Сбросить";
  384. this.btnReset.UseVisualStyleBackColor = false;
  385. this.btnReset.Click += new System.EventHandler(this.BtnReset_Click);
  386. //
  387. // btnSearch
  388. //
  389. this.btnSearch.BackColor = System.Drawing.Color.FromArgb(37, 99, 235);
  390. this.btnSearch.FlatAppearance.BorderSize = 0;
  391. this.btnSearch.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  392. this.btnSearch.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold);
  393. this.btnSearch.ForeColor = System.Drawing.Color.White;
  394. this.btnSearch.Location = new System.Drawing.Point(0, 58);
  395. this.btnSearch.Name = "btnSearch";
  396. this.btnSearch.Size = new System.Drawing.Size(116, 34);
  397. this.btnSearch.TabIndex = 10;
  398. this.btnSearch.Text = "Найти";
  399. this.btnSearch.UseVisualStyleBackColor = false;
  400. this.btnSearch.Click += new System.EventHandler(this.BtnSearch_Click);
  401. //
  402. // dtTo
  403. //
  404. this.dtTo.Format = System.Windows.Forms.DateTimePickerFormat.Short;
  405. this.dtTo.Location = new System.Drawing.Point(786, 24);
  406. this.dtTo.Name = "dtTo";
  407. this.dtTo.ShowCheckBox = true;
  408. this.dtTo.Size = new System.Drawing.Size(145, 24);
  409. this.dtTo.TabIndex = 9;
  410. this.dtTo.Checked = false;
  411. //
  412. // lblDateTo
  413. //
  414. this.lblDateTo.AutoSize = true;
  415. this.lblDateTo.ForeColor = System.Drawing.Color.FromArgb(51, 65, 85);
  416. this.lblDateTo.Location = new System.Drawing.Point(783, 3);
  417. this.lblDateTo.Name = "lblDateTo";
  418. this.lblDateTo.Size = new System.Drawing.Size(22, 17);
  419. this.lblDateTo.TabIndex = 8;
  420. this.lblDateTo.Text = "По";
  421. //
  422. // dtFrom
  423. //
  424. this.dtFrom.Format = System.Windows.Forms.DateTimePickerFormat.Short;
  425. this.dtFrom.Location = new System.Drawing.Point(625, 24);
  426. this.dtFrom.Name = "dtFrom";
  427. this.dtFrom.ShowCheckBox = true;
  428. this.dtFrom.Size = new System.Drawing.Size(145, 24);
  429. this.dtFrom.TabIndex = 7;
  430. this.dtFrom.Checked = false;
  431. //
  432. // lblDateFrom
  433. //
  434. this.lblDateFrom.AutoSize = true;
  435. this.lblDateFrom.ForeColor = System.Drawing.Color.FromArgb(51, 65, 85);
  436. this.lblDateFrom.Location = new System.Drawing.Point(622, 3);
  437. this.lblDateFrom.Name = "lblDateFrom";
  438. this.lblDateFrom.Size = new System.Drawing.Size(15, 17);
  439. this.lblDateFrom.TabIndex = 6;
  440. this.lblDateFrom.Text = "С";
  441. //
  442. // cmbResultFilter
  443. //
  444. this.cmbResultFilter.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  445. this.cmbResultFilter.FormattingEnabled = true;
  446. this.cmbResultFilter.Items.AddRange(new object[] {
  447. "Все",
  448. "сдан",
  449. "не сдан"});
  450. this.cmbResultFilter.SelectedIndex = 0;
  451. this.cmbResultFilter.Location = new System.Drawing.Point(476, 24);
  452. this.cmbResultFilter.Name = "cmbResultFilter";
  453. this.cmbResultFilter.Size = new System.Drawing.Size(130, 25);
  454. this.cmbResultFilter.TabIndex = 5;
  455. //
  456. // lblResultFilter
  457. //
  458. this.lblResultFilter.AutoSize = true;
  459. this.lblResultFilter.ForeColor = System.Drawing.Color.FromArgb(51, 65, 85);
  460. this.lblResultFilter.Location = new System.Drawing.Point(473, 3);
  461. this.lblResultFilter.Name = "lblResultFilter";
  462. this.lblResultFilter.Size = new System.Drawing.Size(67, 17);
  463. this.lblResultFilter.TabIndex = 4;
  464. this.lblResultFilter.Text = "Результат";
  465. //
  466. // txtSchoolFilter
  467. //
  468. this.txtSchoolFilter.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  469. this.txtSchoolFilter.Location = new System.Drawing.Point(238, 24);
  470. this.txtSchoolFilter.Name = "txtSchoolFilter";
  471. this.txtSchoolFilter.Size = new System.Drawing.Size(220, 24);
  472. this.txtSchoolFilter.TabIndex = 3;
  473. //
  474. // lblSchoolFilter
  475. //
  476. this.lblSchoolFilter.AutoSize = true;
  477. this.lblSchoolFilter.ForeColor = System.Drawing.Color.FromArgb(51, 65, 85);
  478. this.lblSchoolFilter.Location = new System.Drawing.Point(235, 3);
  479. this.lblSchoolFilter.Name = "lblSchoolFilter";
  480. this.lblSchoolFilter.Size = new System.Drawing.Size(77, 17);
  481. this.lblSchoolFilter.TabIndex = 2;
  482. this.lblSchoolFilter.Text = "Автошкола";
  483. //
  484. // txtDriverFilter
  485. //
  486. this.txtDriverFilter.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  487. this.txtDriverFilter.Location = new System.Drawing.Point(0, 24);
  488. this.txtDriverFilter.Name = "txtDriverFilter";
  489. this.txtDriverFilter.Size = new System.Drawing.Size(220, 24);
  490. this.txtDriverFilter.TabIndex = 1;
  491. //
  492. // lblDriverFilter
  493. //
  494. this.lblDriverFilter.AutoSize = true;
  495. this.lblDriverFilter.ForeColor = System.Drawing.Color.FromArgb(51, 65, 85);
  496. this.lblDriverFilter.Location = new System.Drawing.Point(0, 3);
  497. this.lblDriverFilter.Name = "lblDriverFilter";
  498. this.lblDriverFilter.Size = new System.Drawing.Size(62, 17);
  499. this.lblDriverFilter.TabIndex = 0;
  500. this.lblDriverFilter.Text = "Водитель";
  501. //
  502. // MainForm
  503. //
  504. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  505. this.BackColor = System.Drawing.Color.FromArgb(248, 250, 252);
  506. this.ClientSize = new System.Drawing.Size(1180, 760);
  507. this.Controls.Add(this.tabControl);
  508. this.Controls.Add(this.pnlHeader);
  509. this.Font = new System.Drawing.Font("Segoe UI", 9.5F);
  510. this.MinimumSize = new System.Drawing.Size(1100, 700);
  511. this.Name = "MainForm";
  512. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  513. this.Text = "Автошкола | WinForms + PostgreSQL";
  514. this.pnlHeader.ResumeLayout(false);
  515. this.pnlHeader.PerformLayout();
  516. this.tabControl.ResumeLayout(false);
  517. this.tabTables.ResumeLayout(false);
  518. ((System.ComponentModel.ISupportInitialize)(this.dgvTables)).EndInit();
  519. this.pnlTablesTop.ResumeLayout(false);
  520. this.pnlTablesTop.PerformLayout();
  521. this.tabSearch.ResumeLayout(false);
  522. ((System.ComponentModel.ISupportInitialize)(this.dgvSearch)).EndInit();
  523. this.pnlSearchTop.ResumeLayout(false);
  524. this.pnlSearchTop.PerformLayout();
  525. this.ResumeLayout(false);
  526. }
  527. }
  528. }