FormMain.Designer.cs 42 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761
  1. namespace T_FaceRecognizer
  2. {
  3. partial class FormMain
  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. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
  29. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormMain));
  30. this.PbxFaces = new System.Windows.Forms.PictureBox();
  31. this.BtnAdd = new System.Windows.Forms.Button();
  32. this.PanelMenu = new System.Windows.Forms.Panel();
  33. this.PanSettings = new System.Windows.Forms.Panel();
  34. this.BtnSettings = new System.Windows.Forms.Button();
  35. this.pictureBox4 = new System.Windows.Forms.PictureBox();
  36. this.PanJournal = new System.Windows.Forms.Panel();
  37. this.BtnJournal = new System.Windows.Forms.Button();
  38. this.pictureBox3 = new System.Windows.Forms.PictureBox();
  39. this.PanIdentification = new System.Windows.Forms.Panel();
  40. this.BtnIdent = new System.Windows.Forms.Button();
  41. this.pictureBox2 = new System.Windows.Forms.PictureBox();
  42. this.PanAdd = new System.Windows.Forms.Panel();
  43. this.BtnAddUser = new System.Windows.Forms.Button();
  44. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  45. this.PanHome = new System.Windows.Forms.Panel();
  46. this.BtnMain = new System.Windows.Forms.Button();
  47. this.PbxLogoHome = new System.Windows.Forms.PictureBox();
  48. this.PbxMenu = new System.Windows.Forms.PictureBox();
  49. this.TabPages = new System.Windows.Forms.TabControl();
  50. this.tabPage1 = new System.Windows.Forms.TabPage();
  51. this.label5 = new System.Windows.Forms.Label();
  52. this.label4 = new System.Windows.Forms.Label();
  53. this.label3 = new System.Windows.Forms.Label();
  54. this.label2 = new System.Windows.Forms.Label();
  55. this.label1 = new System.Windows.Forms.Label();
  56. this.TbxMaskSnils = new System.Windows.Forms.MaskedTextBox();
  57. this.TbxMaskPhone = new System.Windows.Forms.MaskedTextBox();
  58. this.TbxPatronymic = new System.Windows.Forms.TextBox();
  59. this.TbxName = new System.Windows.Forms.TextBox();
  60. this.TbxLastname = new System.Windows.Forms.TextBox();
  61. this.tabPage2 = new System.Windows.Forms.TabPage();
  62. this.BtnIn = new System.Windows.Forms.Button();
  63. this.BtnOut = new System.Windows.Forms.Button();
  64. this.PbxIdentification = new System.Windows.Forms.PictureBox();
  65. this.tabPage3 = new System.Windows.Forms.TabPage();
  66. this.DgbJournal = new System.Windows.Forms.DataGridView();
  67. this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  68. this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  69. this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  70. this.tabPage4 = new System.Windows.Forms.TabPage();
  71. this.label7 = new System.Windows.Forms.Label();
  72. this.tabPage5 = new System.Windows.Forms.TabPage();
  73. this.label6 = new System.Windows.Forms.Label();
  74. this.SplitContainer = new System.Windows.Forms.SplitContainer();
  75. ((System.ComponentModel.ISupportInitialize)(this.PbxFaces)).BeginInit();
  76. this.PanelMenu.SuspendLayout();
  77. this.PanSettings.SuspendLayout();
  78. ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit();
  79. this.PanJournal.SuspendLayout();
  80. ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit();
  81. this.PanIdentification.SuspendLayout();
  82. ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
  83. this.PanAdd.SuspendLayout();
  84. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  85. this.PanHome.SuspendLayout();
  86. ((System.ComponentModel.ISupportInitialize)(this.PbxLogoHome)).BeginInit();
  87. ((System.ComponentModel.ISupportInitialize)(this.PbxMenu)).BeginInit();
  88. this.TabPages.SuspendLayout();
  89. this.tabPage1.SuspendLayout();
  90. this.tabPage2.SuspendLayout();
  91. ((System.ComponentModel.ISupportInitialize)(this.PbxIdentification)).BeginInit();
  92. this.tabPage3.SuspendLayout();
  93. ((System.ComponentModel.ISupportInitialize)(this.DgbJournal)).BeginInit();
  94. this.tabPage4.SuspendLayout();
  95. this.tabPage5.SuspendLayout();
  96. ((System.ComponentModel.ISupportInitialize)(this.SplitContainer)).BeginInit();
  97. this.SplitContainer.Panel1.SuspendLayout();
  98. this.SplitContainer.Panel2.SuspendLayout();
  99. this.SplitContainer.SuspendLayout();
  100. this.SuspendLayout();
  101. //
  102. // PbxFaces
  103. //
  104. this.PbxFaces.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  105. | System.Windows.Forms.AnchorStyles.Left)
  106. | System.Windows.Forms.AnchorStyles.Right)));
  107. this.PbxFaces.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(110)))));
  108. this.PbxFaces.Location = new System.Drawing.Point(4, 5);
  109. this.PbxFaces.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  110. this.PbxFaces.Name = "PbxFaces";
  111. this.PbxFaces.Size = new System.Drawing.Size(188, 345);
  112. this.PbxFaces.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
  113. this.PbxFaces.TabIndex = 0;
  114. this.PbxFaces.TabStop = false;
  115. //
  116. // BtnAdd
  117. //
  118. this.BtnAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  119. this.BtnAdd.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(166)))), ((int)(((byte)(64)))));
  120. this.BtnAdd.ForeColor = System.Drawing.Color.White;
  121. this.BtnAdd.Location = new System.Drawing.Point(200, 291);
  122. this.BtnAdd.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  123. this.BtnAdd.Name = "BtnAdd";
  124. this.BtnAdd.Size = new System.Drawing.Size(220, 37);
  125. this.BtnAdd.TabIndex = 1;
  126. this.BtnAdd.Text = "Добавить пользователя";
  127. this.BtnAdd.UseVisualStyleBackColor = false;
  128. this.BtnAdd.Click += new System.EventHandler(this.BtnAdd_Click);
  129. //
  130. // PanelMenu
  131. //
  132. this.PanelMenu.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(206)))), ((int)(((byte)(208)))), ((int)(((byte)(223)))));
  133. this.PanelMenu.Controls.Add(this.PanSettings);
  134. this.PanelMenu.Controls.Add(this.PanJournal);
  135. this.PanelMenu.Controls.Add(this.PanIdentification);
  136. this.PanelMenu.Controls.Add(this.PanAdd);
  137. this.PanelMenu.Controls.Add(this.PanHome);
  138. this.PanelMenu.Controls.Add(this.PbxMenu);
  139. this.PanelMenu.Dock = System.Windows.Forms.DockStyle.Fill;
  140. this.PanelMenu.Location = new System.Drawing.Point(0, 0);
  141. this.PanelMenu.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  142. this.PanelMenu.Name = "PanelMenu";
  143. this.PanelMenu.Size = new System.Drawing.Size(248, 389);
  144. this.PanelMenu.TabIndex = 3;
  145. this.PanelMenu.Paint += new System.Windows.Forms.PaintEventHandler(this.PanelMenu_Paint);
  146. //
  147. // PanSettings
  148. //
  149. this.PanSettings.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  150. | System.Windows.Forms.AnchorStyles.Right)));
  151. this.PanSettings.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(166)))), ((int)(((byte)(64)))));
  152. this.PanSettings.Controls.Add(this.BtnSettings);
  153. this.PanSettings.Controls.Add(this.pictureBox4);
  154. this.PanSettings.Location = new System.Drawing.Point(4, 246);
  155. this.PanSettings.Name = "PanSettings";
  156. this.PanSettings.Size = new System.Drawing.Size(241, 35);
  157. this.PanSettings.TabIndex = 3;
  158. //
  159. // BtnSettings
  160. //
  161. this.BtnSettings.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(166)))), ((int)(((byte)(64)))));
  162. this.BtnSettings.Dock = System.Windows.Forms.DockStyle.Fill;
  163. this.BtnSettings.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  164. this.BtnSettings.ForeColor = System.Drawing.Color.White;
  165. this.BtnSettings.Location = new System.Drawing.Point(41, 0);
  166. this.BtnSettings.Name = "BtnSettings";
  167. this.BtnSettings.Size = new System.Drawing.Size(200, 35);
  168. this.BtnSettings.TabIndex = 1;
  169. this.BtnSettings.Text = "Настройки";
  170. this.BtnSettings.UseVisualStyleBackColor = false;
  171. this.BtnSettings.Click += new System.EventHandler(this.BtnSettings_Click);
  172. //
  173. // pictureBox4
  174. //
  175. this.pictureBox4.Dock = System.Windows.Forms.DockStyle.Left;
  176. this.pictureBox4.Image = global::T_FaceRecognizer.Properties.Resources.settingscog_87317;
  177. this.pictureBox4.Location = new System.Drawing.Point(0, 0);
  178. this.pictureBox4.Name = "pictureBox4";
  179. this.pictureBox4.Size = new System.Drawing.Size(41, 35);
  180. this.pictureBox4.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
  181. this.pictureBox4.TabIndex = 0;
  182. this.pictureBox4.TabStop = false;
  183. this.pictureBox4.Click += new System.EventHandler(this.BtnSettings_Click);
  184. //
  185. // PanJournal
  186. //
  187. this.PanJournal.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  188. | System.Windows.Forms.AnchorStyles.Right)));
  189. this.PanJournal.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(166)))), ((int)(((byte)(64)))));
  190. this.PanJournal.Controls.Add(this.BtnJournal);
  191. this.PanJournal.Controls.Add(this.pictureBox3);
  192. this.PanJournal.Location = new System.Drawing.Point(4, 205);
  193. this.PanJournal.Name = "PanJournal";
  194. this.PanJournal.Size = new System.Drawing.Size(241, 35);
  195. this.PanJournal.TabIndex = 3;
  196. //
  197. // BtnJournal
  198. //
  199. this.BtnJournal.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(166)))), ((int)(((byte)(64)))));
  200. this.BtnJournal.Dock = System.Windows.Forms.DockStyle.Fill;
  201. this.BtnJournal.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  202. this.BtnJournal.ForeColor = System.Drawing.Color.White;
  203. this.BtnJournal.Location = new System.Drawing.Point(41, 0);
  204. this.BtnJournal.Name = "BtnJournal";
  205. this.BtnJournal.Size = new System.Drawing.Size(200, 35);
  206. this.BtnJournal.TabIndex = 1;
  207. this.BtnJournal.Text = "Журнал";
  208. this.BtnJournal.UseVisualStyleBackColor = false;
  209. this.BtnJournal.Click += new System.EventHandler(this.BtnJournal_Click);
  210. //
  211. // pictureBox3
  212. //
  213. this.pictureBox3.Dock = System.Windows.Forms.DockStyle.Left;
  214. this.pictureBox3.Image = global::T_FaceRecognizer.Properties.Resources.journal_text_icon_160013;
  215. this.pictureBox3.Location = new System.Drawing.Point(0, 0);
  216. this.pictureBox3.Name = "pictureBox3";
  217. this.pictureBox3.Size = new System.Drawing.Size(41, 35);
  218. this.pictureBox3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
  219. this.pictureBox3.TabIndex = 0;
  220. this.pictureBox3.TabStop = false;
  221. this.pictureBox3.Click += new System.EventHandler(this.BtnJournal_Click);
  222. //
  223. // PanIdentification
  224. //
  225. this.PanIdentification.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  226. | System.Windows.Forms.AnchorStyles.Right)));
  227. this.PanIdentification.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(166)))), ((int)(((byte)(64)))));
  228. this.PanIdentification.Controls.Add(this.BtnIdent);
  229. this.PanIdentification.Controls.Add(this.pictureBox2);
  230. this.PanIdentification.Location = new System.Drawing.Point(4, 164);
  231. this.PanIdentification.Name = "PanIdentification";
  232. this.PanIdentification.Size = new System.Drawing.Size(241, 35);
  233. this.PanIdentification.TabIndex = 3;
  234. //
  235. // BtnIdent
  236. //
  237. this.BtnIdent.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(166)))), ((int)(((byte)(64)))));
  238. this.BtnIdent.Dock = System.Windows.Forms.DockStyle.Fill;
  239. this.BtnIdent.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  240. this.BtnIdent.ForeColor = System.Drawing.Color.White;
  241. this.BtnIdent.Location = new System.Drawing.Point(41, 0);
  242. this.BtnIdent.Name = "BtnIdent";
  243. this.BtnIdent.Size = new System.Drawing.Size(200, 35);
  244. this.BtnIdent.TabIndex = 1;
  245. this.BtnIdent.Text = "Идентификация";
  246. this.BtnIdent.UseVisualStyleBackColor = false;
  247. this.BtnIdent.Click += new System.EventHandler(this.BtnIdent_Click);
  248. //
  249. // pictureBox2
  250. //
  251. this.pictureBox2.Dock = System.Windows.Forms.DockStyle.Left;
  252. this.pictureBox2.Image = global::T_FaceRecognizer.Properties.Resources.explorationoffacerecognition_facescanning_exploraciondereconocimientoderostro_4589;
  253. this.pictureBox2.Location = new System.Drawing.Point(0, 0);
  254. this.pictureBox2.Name = "pictureBox2";
  255. this.pictureBox2.Size = new System.Drawing.Size(41, 35);
  256. this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
  257. this.pictureBox2.TabIndex = 0;
  258. this.pictureBox2.TabStop = false;
  259. this.pictureBox2.Click += new System.EventHandler(this.BtnIdent_Click);
  260. //
  261. // PanAdd
  262. //
  263. this.PanAdd.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  264. | System.Windows.Forms.AnchorStyles.Right)));
  265. this.PanAdd.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(166)))), ((int)(((byte)(64)))));
  266. this.PanAdd.Controls.Add(this.BtnAddUser);
  267. this.PanAdd.Controls.Add(this.pictureBox1);
  268. this.PanAdd.Location = new System.Drawing.Point(3, 123);
  269. this.PanAdd.Name = "PanAdd";
  270. this.PanAdd.Size = new System.Drawing.Size(241, 35);
  271. this.PanAdd.TabIndex = 2;
  272. //
  273. // BtnAddUser
  274. //
  275. this.BtnAddUser.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(166)))), ((int)(((byte)(64)))));
  276. this.BtnAddUser.Dock = System.Windows.Forms.DockStyle.Fill;
  277. this.BtnAddUser.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  278. this.BtnAddUser.ForeColor = System.Drawing.Color.White;
  279. this.BtnAddUser.Location = new System.Drawing.Point(41, 0);
  280. this.BtnAddUser.Name = "BtnAddUser";
  281. this.BtnAddUser.Size = new System.Drawing.Size(200, 35);
  282. this.BtnAddUser.TabIndex = 1;
  283. this.BtnAddUser.Text = "Добавить";
  284. this.BtnAddUser.UseVisualStyleBackColor = false;
  285. this.BtnAddUser.Click += new System.EventHandler(this.BtnAddUser_Click);
  286. //
  287. // pictureBox1
  288. //
  289. this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Left;
  290. this.pictureBox1.Image = global::T_FaceRecognizer.Properties.Resources.add_circle_create_expand_new_plus_icon_123218;
  291. this.pictureBox1.Location = new System.Drawing.Point(0, 0);
  292. this.pictureBox1.Name = "pictureBox1";
  293. this.pictureBox1.Size = new System.Drawing.Size(41, 35);
  294. this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
  295. this.pictureBox1.TabIndex = 0;
  296. this.pictureBox1.TabStop = false;
  297. this.pictureBox1.Click += new System.EventHandler(this.BtnAddUser_Click);
  298. //
  299. // PanHome
  300. //
  301. this.PanHome.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  302. | System.Windows.Forms.AnchorStyles.Right)));
  303. this.PanHome.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(166)))), ((int)(((byte)(64)))));
  304. this.PanHome.Controls.Add(this.BtnMain);
  305. this.PanHome.Controls.Add(this.PbxLogoHome);
  306. this.PanHome.Location = new System.Drawing.Point(3, 82);
  307. this.PanHome.Name = "PanHome";
  308. this.PanHome.Size = new System.Drawing.Size(241, 35);
  309. this.PanHome.TabIndex = 1;
  310. //
  311. // BtnMain
  312. //
  313. this.BtnMain.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
  314. this.BtnMain.Dock = System.Windows.Forms.DockStyle.Fill;
  315. this.BtnMain.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  316. this.BtnMain.ForeColor = System.Drawing.Color.White;
  317. this.BtnMain.Location = new System.Drawing.Point(41, 0);
  318. this.BtnMain.Name = "BtnMain";
  319. this.BtnMain.Size = new System.Drawing.Size(200, 35);
  320. this.BtnMain.TabIndex = 1;
  321. this.BtnMain.Text = "Главная";
  322. this.BtnMain.TextImageRelation = System.Windows.Forms.TextImageRelation.TextBeforeImage;
  323. this.BtnMain.UseVisualStyleBackColor = true;
  324. this.BtnMain.Click += new System.EventHandler(this.BtnMain_Click);
  325. //
  326. // PbxLogoHome
  327. //
  328. this.PbxLogoHome.Dock = System.Windows.Forms.DockStyle.Left;
  329. this.PbxLogoHome.Image = global::T_FaceRecognizer.Properties.Resources._3643769_building_home_house_main_menu_start_113416;
  330. this.PbxLogoHome.Location = new System.Drawing.Point(0, 0);
  331. this.PbxLogoHome.Name = "PbxLogoHome";
  332. this.PbxLogoHome.Size = new System.Drawing.Size(41, 35);
  333. this.PbxLogoHome.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
  334. this.PbxLogoHome.TabIndex = 0;
  335. this.PbxLogoHome.TabStop = false;
  336. this.PbxLogoHome.Click += new System.EventHandler(this.BtnMain_Click);
  337. //
  338. // PbxMenu
  339. //
  340. this.PbxMenu.Image = global::T_FaceRecognizer.Properties.Resources.menu_button_icon_icons_com_72989;
  341. this.PbxMenu.Location = new System.Drawing.Point(6, 46);
  342. this.PbxMenu.Name = "PbxMenu";
  343. this.PbxMenu.Size = new System.Drawing.Size(35, 30);
  344. this.PbxMenu.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
  345. this.PbxMenu.TabIndex = 0;
  346. this.PbxMenu.TabStop = false;
  347. this.PbxMenu.Click += new System.EventHandler(this.PbxMenu_Click);
  348. //
  349. // TabPages
  350. //
  351. this.TabPages.Controls.Add(this.tabPage1);
  352. this.TabPages.Controls.Add(this.tabPage2);
  353. this.TabPages.Controls.Add(this.tabPage3);
  354. this.TabPages.Controls.Add(this.tabPage4);
  355. this.TabPages.Controls.Add(this.tabPage5);
  356. this.TabPages.Dock = System.Windows.Forms.DockStyle.Fill;
  357. this.TabPages.Location = new System.Drawing.Point(0, 0);
  358. this.TabPages.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  359. this.TabPages.Multiline = true;
  360. this.TabPages.Name = "TabPages";
  361. this.TabPages.SelectedIndex = 0;
  362. this.TabPages.Size = new System.Drawing.Size(437, 389);
  363. this.TabPages.TabIndex = 4;
  364. //
  365. // tabPage1
  366. //
  367. this.tabPage1.BackColor = System.Drawing.Color.Transparent;
  368. this.tabPage1.Controls.Add(this.label5);
  369. this.tabPage1.Controls.Add(this.label4);
  370. this.tabPage1.Controls.Add(this.label3);
  371. this.tabPage1.Controls.Add(this.label2);
  372. this.tabPage1.Controls.Add(this.label1);
  373. this.tabPage1.Controls.Add(this.TbxMaskSnils);
  374. this.tabPage1.Controls.Add(this.TbxMaskPhone);
  375. this.tabPage1.Controls.Add(this.TbxPatronymic);
  376. this.tabPage1.Controls.Add(this.TbxName);
  377. this.tabPage1.Controls.Add(this.TbxLastname);
  378. this.tabPage1.Controls.Add(this.PbxFaces);
  379. this.tabPage1.Controls.Add(this.BtnAdd);
  380. this.tabPage1.Location = new System.Drawing.Point(4, 30);
  381. this.tabPage1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  382. this.tabPage1.Name = "tabPage1";
  383. this.tabPage1.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5);
  384. this.tabPage1.Size = new System.Drawing.Size(429, 355);
  385. this.tabPage1.TabIndex = 0;
  386. this.tabPage1.Text = "Add";
  387. //
  388. // label5
  389. //
  390. this.label5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  391. this.label5.AutoSize = true;
  392. this.label5.BackColor = System.Drawing.Color.Transparent;
  393. this.label5.Location = new System.Drawing.Point(205, 230);
  394. this.label5.Name = "label5";
  395. this.label5.Size = new System.Drawing.Size(187, 21);
  396. this.label5.TabIndex = 11;
  397. this.label5.Text = "Номер снилс (11 цифр):";
  398. //
  399. // label4
  400. //
  401. this.label4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  402. this.label4.AutoSize = true;
  403. this.label4.BackColor = System.Drawing.Color.Transparent;
  404. this.label4.Location = new System.Drawing.Point(204, 173);
  405. this.label4.Name = "label4";
  406. this.label4.Size = new System.Drawing.Size(191, 21);
  407. this.label4.TabIndex = 10;
  408. this.label4.Text = "Телефон (при наличии):";
  409. //
  410. // label3
  411. //
  412. this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  413. this.label3.AutoSize = true;
  414. this.label3.BackColor = System.Drawing.Color.Transparent;
  415. this.label3.Location = new System.Drawing.Point(204, 117);
  416. this.label3.Name = "label3";
  417. this.label3.Size = new System.Drawing.Size(85, 21);
  418. this.label3.TabIndex = 9;
  419. this.label3.Text = "Отчество:";
  420. //
  421. // label2
  422. //
  423. this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  424. this.label2.AutoSize = true;
  425. this.label2.BackColor = System.Drawing.Color.Transparent;
  426. this.label2.Location = new System.Drawing.Point(204, 61);
  427. this.label2.Name = "label2";
  428. this.label2.Size = new System.Drawing.Size(47, 21);
  429. this.label2.TabIndex = 8;
  430. this.label2.Text = "Имя:";
  431. //
  432. // label1
  433. //
  434. this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  435. this.label1.AutoSize = true;
  436. this.label1.BackColor = System.Drawing.Color.Transparent;
  437. this.label1.Location = new System.Drawing.Point(205, 5);
  438. this.label1.Name = "label1";
  439. this.label1.Size = new System.Drawing.Size(84, 21);
  440. this.label1.TabIndex = 7;
  441. this.label1.Text = "Фамилия:";
  442. //
  443. // TbxMaskSnils
  444. //
  445. this.TbxMaskSnils.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  446. this.TbxMaskSnils.Location = new System.Drawing.Point(200, 254);
  447. this.TbxMaskSnils.Mask = "00000000000";
  448. this.TbxMaskSnils.Name = "TbxMaskSnils";
  449. this.TbxMaskSnils.Size = new System.Drawing.Size(222, 29);
  450. this.TbxMaskSnils.TabIndex = 6;
  451. //
  452. // TbxMaskPhone
  453. //
  454. this.TbxMaskPhone.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  455. this.TbxMaskPhone.Location = new System.Drawing.Point(200, 198);
  456. this.TbxMaskPhone.Mask = "(999) 000-0000";
  457. this.TbxMaskPhone.Name = "TbxMaskPhone";
  458. this.TbxMaskPhone.Size = new System.Drawing.Size(222, 29);
  459. this.TbxMaskPhone.TabIndex = 5;
  460. //
  461. // TbxPatronymic
  462. //
  463. this.TbxPatronymic.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  464. this.TbxPatronymic.Location = new System.Drawing.Point(200, 141);
  465. this.TbxPatronymic.Name = "TbxPatronymic";
  466. this.TbxPatronymic.Size = new System.Drawing.Size(222, 29);
  467. this.TbxPatronymic.TabIndex = 4;
  468. //
  469. // TbxName
  470. //
  471. this.TbxName.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  472. this.TbxName.Location = new System.Drawing.Point(200, 85);
  473. this.TbxName.Name = "TbxName";
  474. this.TbxName.Size = new System.Drawing.Size(222, 29);
  475. this.TbxName.TabIndex = 3;
  476. //
  477. // TbxLastname
  478. //
  479. this.TbxLastname.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  480. this.TbxLastname.Location = new System.Drawing.Point(200, 29);
  481. this.TbxLastname.Name = "TbxLastname";
  482. this.TbxLastname.Size = new System.Drawing.Size(222, 29);
  483. this.TbxLastname.TabIndex = 2;
  484. //
  485. // tabPage2
  486. //
  487. this.tabPage2.Controls.Add(this.BtnIn);
  488. this.tabPage2.Controls.Add(this.BtnOut);
  489. this.tabPage2.Controls.Add(this.PbxIdentification);
  490. this.tabPage2.Location = new System.Drawing.Point(4, 30);
  491. this.tabPage2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  492. this.tabPage2.Name = "tabPage2";
  493. this.tabPage2.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5);
  494. this.tabPage2.Size = new System.Drawing.Size(429, 355);
  495. this.tabPage2.TabIndex = 1;
  496. this.tabPage2.Text = "Ident";
  497. this.tabPage2.UseVisualStyleBackColor = true;
  498. //
  499. // BtnIn
  500. //
  501. this.BtnIn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  502. this.BtnIn.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(166)))), ((int)(((byte)(64)))));
  503. this.BtnIn.ForeColor = System.Drawing.Color.White;
  504. this.BtnIn.Location = new System.Drawing.Point(230, 289);
  505. this.BtnIn.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  506. this.BtnIn.Name = "BtnIn";
  507. this.BtnIn.Size = new System.Drawing.Size(190, 37);
  508. this.BtnIn.TabIndex = 3;
  509. this.BtnIn.Text = "Вход";
  510. this.BtnIn.UseVisualStyleBackColor = false;
  511. this.BtnIn.Click += new System.EventHandler(this.BtnIn_Click);
  512. //
  513. // BtnOut
  514. //
  515. this.BtnOut.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  516. this.BtnOut.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(166)))), ((int)(((byte)(64)))));
  517. this.BtnOut.ForeColor = System.Drawing.Color.White;
  518. this.BtnOut.Location = new System.Drawing.Point(8, 289);
  519. this.BtnOut.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  520. this.BtnOut.Name = "BtnOut";
  521. this.BtnOut.Size = new System.Drawing.Size(190, 37);
  522. this.BtnOut.TabIndex = 2;
  523. this.BtnOut.Text = "Выход";
  524. this.BtnOut.UseVisualStyleBackColor = false;
  525. this.BtnOut.Click += new System.EventHandler(this.BtnOut_Click);
  526. //
  527. // PbxIdentification
  528. //
  529. this.PbxIdentification.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  530. | System.Windows.Forms.AnchorStyles.Left)
  531. | System.Windows.Forms.AnchorStyles.Right)));
  532. this.PbxIdentification.BackColor = System.Drawing.Color.Black;
  533. this.PbxIdentification.Location = new System.Drawing.Point(4, 5);
  534. this.PbxIdentification.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  535. this.PbxIdentification.Name = "PbxIdentification";
  536. this.PbxIdentification.Size = new System.Drawing.Size(421, 274);
  537. this.PbxIdentification.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
  538. this.PbxIdentification.TabIndex = 1;
  539. this.PbxIdentification.TabStop = false;
  540. //
  541. // tabPage3
  542. //
  543. this.tabPage3.Controls.Add(this.DgbJournal);
  544. this.tabPage3.Location = new System.Drawing.Point(4, 22);
  545. this.tabPage3.Name = "tabPage3";
  546. this.tabPage3.Size = new System.Drawing.Size(429, 363);
  547. this.tabPage3.TabIndex = 2;
  548. this.tabPage3.Text = "Journal";
  549. this.tabPage3.UseVisualStyleBackColor = true;
  550. //
  551. // DgbJournal
  552. //
  553. this.DgbJournal.AllowUserToAddRows = false;
  554. this.DgbJournal.AllowUserToDeleteRows = false;
  555. this.DgbJournal.AllowUserToResizeColumns = false;
  556. this.DgbJournal.AllowUserToResizeRows = false;
  557. this.DgbJournal.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  558. | System.Windows.Forms.AnchorStyles.Left)
  559. | System.Windows.Forms.AnchorStyles.Right)));
  560. this.DgbJournal.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(228)))), ((int)(((byte)(255)))), ((int)(((byte)(225)))));
  561. this.DgbJournal.BorderStyle = System.Windows.Forms.BorderStyle.None;
  562. this.DgbJournal.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.SingleHorizontal;
  563. this.DgbJournal.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  564. this.DgbJournal.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  565. this.Column1,
  566. this.Column2,
  567. this.Column3});
  568. this.DgbJournal.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(243)))), ((int)(((byte)(243)))));
  569. this.DgbJournal.Location = new System.Drawing.Point(3, 3);
  570. this.DgbJournal.MultiSelect = false;
  571. this.DgbJournal.Name = "DgbJournal";
  572. this.DgbJournal.ReadOnly = true;
  573. this.DgbJournal.RowHeadersVisible = false;
  574. this.DgbJournal.RowTemplate.DividerHeight = 5;
  575. this.DgbJournal.RowTemplate.Height = 35;
  576. this.DgbJournal.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  577. this.DgbJournal.Size = new System.Drawing.Size(423, 341);
  578. this.DgbJournal.TabIndex = 0;
  579. this.DgbJournal.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.DgbJournal_CellDoubleClick);
  580. //
  581. // Column1
  582. //
  583. this.Column1.HeaderText = "ID";
  584. this.Column1.Name = "Column1";
  585. this.Column1.ReadOnly = true;
  586. this.Column1.Visible = false;
  587. //
  588. // Column2
  589. //
  590. this.Column2.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
  591. dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  592. this.Column2.DefaultCellStyle = dataGridViewCellStyle1;
  593. this.Column2.HeaderText = "Пользователь";
  594. this.Column2.Name = "Column2";
  595. this.Column2.ReadOnly = true;
  596. //
  597. // Column3
  598. //
  599. this.Column3.HeaderText = "Дата последнего посещения";
  600. this.Column3.Name = "Column3";
  601. this.Column3.ReadOnly = true;
  602. //
  603. // tabPage4
  604. //
  605. this.tabPage4.Controls.Add(this.label7);
  606. this.tabPage4.Location = new System.Drawing.Point(4, 22);
  607. this.tabPage4.Name = "tabPage4";
  608. this.tabPage4.Size = new System.Drawing.Size(429, 363);
  609. this.tabPage4.TabIndex = 3;
  610. this.tabPage4.Text = "Settings";
  611. this.tabPage4.UseVisualStyleBackColor = true;
  612. //
  613. // label7
  614. //
  615. this.label7.AutoSize = true;
  616. this.label7.Location = new System.Drawing.Point(3, 11);
  617. this.label7.Name = "label7";
  618. this.label7.Size = new System.Drawing.Size(282, 21);
  619. this.label7.TabIndex = 0;
  620. this.label7.Text = "Настроить выбор активной камеры";
  621. //
  622. // tabPage5
  623. //
  624. this.tabPage5.Controls.Add(this.label6);
  625. this.tabPage5.Location = new System.Drawing.Point(4, 30);
  626. this.tabPage5.Name = "tabPage5";
  627. this.tabPage5.Size = new System.Drawing.Size(429, 355);
  628. this.tabPage5.TabIndex = 4;
  629. this.tabPage5.Text = "Main";
  630. this.tabPage5.UseVisualStyleBackColor = true;
  631. //
  632. // label6
  633. //
  634. this.label6.AutoSize = true;
  635. this.label6.Location = new System.Drawing.Point(13, 11);
  636. this.label6.Name = "label6";
  637. this.label6.Size = new System.Drawing.Size(82, 21);
  638. this.label6.TabIndex = 0;
  639. this.label6.Text = "ГЛАВНАЯ";
  640. //
  641. // SplitContainer
  642. //
  643. this.SplitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
  644. this.SplitContainer.IsSplitterFixed = true;
  645. this.SplitContainer.Location = new System.Drawing.Point(0, 0);
  646. this.SplitContainer.Name = "SplitContainer";
  647. //
  648. // SplitContainer.Panel1
  649. //
  650. this.SplitContainer.Panel1.Controls.Add(this.PanelMenu);
  651. //
  652. // SplitContainer.Panel2
  653. //
  654. this.SplitContainer.Panel2.Controls.Add(this.TabPages);
  655. this.SplitContainer.Size = new System.Drawing.Size(689, 389);
  656. this.SplitContainer.SplitterDistance = 248;
  657. this.SplitContainer.TabIndex = 5;
  658. //
  659. // FormMain
  660. //
  661. this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 21F);
  662. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  663. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(243)))), ((int)(((byte)(243)))));
  664. this.ClientSize = new System.Drawing.Size(689, 389);
  665. this.Controls.Add(this.SplitContainer);
  666. this.DoubleBuffered = true;
  667. this.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold);
  668. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  669. this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  670. this.Name = "FormMain";
  671. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  672. this.Text = "FaceTrack профессиональный";
  673. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormMain_FormClosing);
  674. this.Load += new System.EventHandler(this.FormMain_Load);
  675. this.ResizeEnd += new System.EventHandler(this.FormMain_ResizeEnd);
  676. this.Resize += new System.EventHandler(this.FormMain_Resize);
  677. ((System.ComponentModel.ISupportInitialize)(this.PbxFaces)).EndInit();
  678. this.PanelMenu.ResumeLayout(false);
  679. this.PanSettings.ResumeLayout(false);
  680. ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit();
  681. this.PanJournal.ResumeLayout(false);
  682. ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit();
  683. this.PanIdentification.ResumeLayout(false);
  684. ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
  685. this.PanAdd.ResumeLayout(false);
  686. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  687. this.PanHome.ResumeLayout(false);
  688. ((System.ComponentModel.ISupportInitialize)(this.PbxLogoHome)).EndInit();
  689. ((System.ComponentModel.ISupportInitialize)(this.PbxMenu)).EndInit();
  690. this.TabPages.ResumeLayout(false);
  691. this.tabPage1.ResumeLayout(false);
  692. this.tabPage1.PerformLayout();
  693. this.tabPage2.ResumeLayout(false);
  694. ((System.ComponentModel.ISupportInitialize)(this.PbxIdentification)).EndInit();
  695. this.tabPage3.ResumeLayout(false);
  696. ((System.ComponentModel.ISupportInitialize)(this.DgbJournal)).EndInit();
  697. this.tabPage4.ResumeLayout(false);
  698. this.tabPage4.PerformLayout();
  699. this.tabPage5.ResumeLayout(false);
  700. this.tabPage5.PerformLayout();
  701. this.SplitContainer.Panel1.ResumeLayout(false);
  702. this.SplitContainer.Panel2.ResumeLayout(false);
  703. ((System.ComponentModel.ISupportInitialize)(this.SplitContainer)).EndInit();
  704. this.SplitContainer.ResumeLayout(false);
  705. this.ResumeLayout(false);
  706. }
  707. #endregion
  708. private System.Windows.Forms.PictureBox PbxFaces;
  709. private System.Windows.Forms.Button BtnAdd;
  710. private System.Windows.Forms.Panel PanelMenu;
  711. private System.Windows.Forms.TabPage tabPage1;
  712. private System.Windows.Forms.TabPage tabPage2;
  713. private System.Windows.Forms.TabControl TabPages;
  714. private System.Windows.Forms.PictureBox PbxMenu;
  715. private System.Windows.Forms.SplitContainer SplitContainer;
  716. private System.Windows.Forms.Panel PanHome;
  717. private System.Windows.Forms.PictureBox PbxLogoHome;
  718. private System.Windows.Forms.Button BtnMain;
  719. private System.Windows.Forms.Panel PanAdd;
  720. private System.Windows.Forms.Button BtnAddUser;
  721. private System.Windows.Forms.PictureBox pictureBox1;
  722. private System.Windows.Forms.Panel PanSettings;
  723. private System.Windows.Forms.Button BtnSettings;
  724. private System.Windows.Forms.PictureBox pictureBox4;
  725. private System.Windows.Forms.Panel PanJournal;
  726. private System.Windows.Forms.Button BtnJournal;
  727. private System.Windows.Forms.PictureBox pictureBox3;
  728. private System.Windows.Forms.Panel PanIdentification;
  729. private System.Windows.Forms.Button BtnIdent;
  730. private System.Windows.Forms.PictureBox pictureBox2;
  731. private System.Windows.Forms.PictureBox PbxIdentification;
  732. private System.Windows.Forms.Button BtnIn;
  733. private System.Windows.Forms.Button BtnOut;
  734. private System.Windows.Forms.Label label5;
  735. private System.Windows.Forms.Label label4;
  736. private System.Windows.Forms.Label label3;
  737. private System.Windows.Forms.Label label2;
  738. private System.Windows.Forms.Label label1;
  739. private System.Windows.Forms.MaskedTextBox TbxMaskSnils;
  740. private System.Windows.Forms.MaskedTextBox TbxMaskPhone;
  741. private System.Windows.Forms.TextBox TbxPatronymic;
  742. private System.Windows.Forms.TextBox TbxName;
  743. private System.Windows.Forms.TextBox TbxLastname;
  744. private System.Windows.Forms.TabPage tabPage3;
  745. private System.Windows.Forms.TabPage tabPage4;
  746. private System.Windows.Forms.TabPage tabPage5;
  747. private System.Windows.Forms.Label label6;
  748. private System.Windows.Forms.Label label7;
  749. private System.Windows.Forms.DataGridView DgbJournal;
  750. private System.Windows.Forms.DataGridViewTextBoxColumn Column1;
  751. private System.Windows.Forms.DataGridViewTextBoxColumn Column2;
  752. private System.Windows.Forms.DataGridViewTextBoxColumn Column3;
  753. }
  754. }