No cache version.

Caching disabled. Default setting for this page:enabled (code LNG204)
If the display is too slow, you can disable the user mode to view the cached version.

TodoControl.Designer.cs

Description du code

TodoControl.Designer.cs est un fichier du projet BiblioBrol.
Ce fichier est situé dans /var/www/bin/sniplets/bibliobrol/src/.

Projet BiblioBrol :

Gestion de media en CSharp.

Pour plus d'infos, vous pouvez consulter la brève analyse.

Code source ou contenu du fichier

  1. namespace be.gaudry.bibliobrol.view.controls
  2. {
  3. partial class TodoControl
  4. {
  5. /// <summary>
  6. /// Variable nécessaire au concepteur.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9.  
  10. /// <summary>
  11. /// Nettoyage des ressources utilisées.
  12. /// </summary>
  13. /// <param name="disposing">true si les ressources managées doivent être supprimées ; sinon, false.</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if (disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22.  
  23. #region Code généré par le Concepteur de composants
  24.  
  25. /// <summary>
  26. /// Méthode requise pour la prise en charge du concepteur - ne modifiez pas
  27. /// le contenu de cette méthode avec l'éditeur de code.
  28. /// </summary>
  29. private void InitializeComponent()
  30. {
  31. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
  32. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
  33. this.titleLbl = new System.Windows.Forms.Label();
  34. this.tasksDGV = new System.Windows.Forms.DataGridView();
  35. this.startDate = new System.Windows.Forms.DataGridViewTextBoxColumn();
  36. this.taskName = new System.Windows.Forms.DataGridViewTextBoxColumn();
  37. this.planDate = new System.Windows.Forms.DataGridViewTextBoxColumn();
  38. this.taskInfo = new System.Windows.Forms.DataGridViewTextBoxColumn();
  39. this.endDate = new System.Windows.Forms.DataGridViewTextBoxColumn();
  40. this.id = new System.Windows.Forms.DataGridViewTextBoxColumn();
  41. this.startDateLbl = new System.Windows.Forms.Label();
  42. this.startDateDTP = new System.Windows.Forms.DateTimePicker();
  43. this.endDateDTP = new System.Windows.Forms.DateTimePicker();
  44. this.endDateLbl = new System.Windows.Forms.Label();
  45. this.taskNameLbl = new System.Windows.Forms.Label();
  46. this.taskNameTB = new be.gaudry.view.controls.TextBoxDragDrop();
  47. this.taskInfoCB = new be.gaudry.view.controls.TextBoxDragDrop();
  48. this.taskInfoLbl = new System.Windows.Forms.Label();
  49. this.saveBtn = new System.Windows.Forms.Button();
  50. this.planDateDTP = new System.Windows.Forms.DateTimePicker();
  51. this.planDateLbl = new System.Windows.Forms.Label();
  52. this.prevTaskBtn = new System.Windows.Forms.Button();
  53. this.nextTaskBtn = new System.Windows.Forms.Button();
  54. this.lastTaskBtn = new System.Windows.Forms.Button();
  55. this.firstTaskBtn = new System.Windows.Forms.Button();
  56. this.detailsBtn = new System.Windows.Forms.Button();
  57. this.loadTasksBtn = new System.Windows.Forms.Button();
  58. this.cleanPlanDateBtn = new System.Windows.Forms.Button();
  59. this.planDateBtn = new System.Windows.Forms.Button();
  60. this.cleanEndDateBtn = new System.Windows.Forms.Button();
  61. this.endDateBtn = new System.Windows.Forms.Button();
  62. this.editTaskBtn = new System.Windows.Forms.Button();
  63. this.delTaskBtn = new System.Windows.Forms.Button();
  64. this.addTaskBtn = new System.Windows.Forms.Button();
  65. this.infoCtrl = new be.gaudry.bibliobrol.view.controls.InfoControl();
  66. ((System.ComponentModel.ISupportInitialize)(this.tasksDGV)).BeginInit();
  67. this.SuspendLayout();
  68. //
  69. // titleLbl
  70. //
  71. this.titleLbl.AutoSize = true;
  72. this.titleLbl.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  73. this.titleLbl.Location = new System.Drawing.Point(13, 10);
  74. this.titleLbl.Name = "titleLbl";
  75. this.titleLbl.Size = new System.Drawing.Size(119, 17);
  76. this.titleLbl.TabIndex = 6;
  77. this.titleLbl.Text = "Liste de tâches";
  78. this.titleLbl.TextAlign = System.Drawing.ContentAlignment.TopCenter;
  79. //
  80. // tasksDGV
  81. //
  82. this.tasksDGV.AllowUserToAddRows = false;
  83. this.tasksDGV.AllowUserToDeleteRows = false;
  84. this.tasksDGV.AllowUserToOrderColumns = true;
  85. dataGridViewCellStyle1.BackColor = System.Drawing.Color.GhostWhite;
  86. this.tasksDGV.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
  87. this.tasksDGV.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  88. | System.Windows.Forms.AnchorStyles.Left)
  89. | System.Windows.Forms.AnchorStyles.Right)));
  90. this.tasksDGV.BackgroundColor = System.Drawing.SystemColors.Control;
  91. dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  92. dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.ControlLight;
  93. dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  94. dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.WindowText;
  95. dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  96. this.tasksDGV.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2;
  97. this.tasksDGV.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  98. this.startDate,
  99. this.taskName,
  100. this.planDate,
  101. this.taskInfo,
  102. this.endDate,
  103. this.id});
  104. this.tasksDGV.EnableHeadersVisualStyles = false;
  105. this.tasksDGV.GridColor = System.Drawing.Color.SlateGray;
  106. this.tasksDGV.Location = new System.Drawing.Point(16, 47);
  107. this.tasksDGV.MultiSelect = false;
  108. this.tasksDGV.Name = "tasksDGV";
  109. this.tasksDGV.ReadOnly = true;
  110. this.tasksDGV.RowHeadersVisible = false;
  111. this.tasksDGV.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  112. this.tasksDGV.Size = new System.Drawing.Size(370, 147);
  113. this.tasksDGV.TabIndex = 7;
  114. this.tasksDGV.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.tasksDGV_CellClick);
  115. this.tasksDGV.SelectionChanged += new System.EventHandler(this.tasksDGV_SelectionChanged);
  116. //
  117. // startDate
  118. //
  119. this.startDate.DataPropertyName = "startDate";
  120. this.startDate.HeaderText = "Début";
  121. this.startDate.Name = "startDate";
  122. this.startDate.ReadOnly = true;
  123. this.startDate.Width = 80;
  124. //
  125. // taskName
  126. //
  127. this.taskName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
  128. this.taskName.DataPropertyName = "taskName";
  129. this.taskName.HeaderText = "Nom";
  130. this.taskName.Name = "taskName";
  131. this.taskName.ReadOnly = true;
  132. //
  133. // planDate
  134. //
  135. this.planDate.DataPropertyName = "planDate";
  136. this.planDate.HeaderText = "Prévu";
  137. this.planDate.Name = "planDate";
  138. this.planDate.ReadOnly = true;
  139. this.planDate.Width = 80;
  140. //
  141. // taskInfo
  142. //
  143. this.taskInfo.DataPropertyName = "taskInfo";
  144. this.taskInfo.HeaderText = "Infos";
  145. this.taskInfo.Name = "taskInfo";
  146. this.taskInfo.ReadOnly = true;
  147. this.taskInfo.Width = 75;
  148. //
  149. // endDate
  150. //
  151. this.endDate.DataPropertyName = "endDate";
  152. this.endDate.HeaderText = "Fin";
  153. this.endDate.Name = "endDate";
  154. this.endDate.ReadOnly = true;
  155. this.endDate.Width = 80;
  156. //
  157. // id
  158. //
  159. this.id.DataPropertyName = "id";
  160. this.id.HeaderText = "id";
  161. this.id.Name = "id";
  162. this.id.ReadOnly = true;
  163. this.id.Visible = false;
  164. //
  165. // startDateLbl
  166. //
  167. this.startDateLbl.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  168. this.startDateLbl.AutoSize = true;
  169. this.startDateLbl.Location = new System.Drawing.Point(16, 204);
  170. this.startDateLbl.Name = "startDateLbl";
  171. this.startDateLbl.Size = new System.Drawing.Size(36, 13);
  172. this.startDateLbl.TabIndex = 11;
  173. this.startDateLbl.Text = "Début";
  174. this.startDateLbl.Visible = false;
  175. //
  176. // startDateDTP
  177. //
  178. this.startDateDTP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  179. this.startDateDTP.Format = System.Windows.Forms.DateTimePickerFormat.Short;
  180. this.startDateDTP.Location = new System.Drawing.Point(55, 200);
  181. this.startDateDTP.Name = "startDateDTP";
  182. this.startDateDTP.Size = new System.Drawing.Size(90, 20);
  183. this.startDateDTP.TabIndex = 12;
  184. this.startDateDTP.Visible = false;
  185. //
  186. // endDateDTP
  187. //
  188. this.endDateDTP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  189. this.endDateDTP.Format = System.Windows.Forms.DateTimePickerFormat.Short;
  190. this.endDateDTP.Location = new System.Drawing.Point(55, 225);
  191. this.endDateDTP.Name = "endDateDTP";
  192. this.endDateDTP.Size = new System.Drawing.Size(90, 20);
  193. this.endDateDTP.TabIndex = 14;
  194. this.endDateDTP.Visible = false;
  195. //
  196. // endDateLbl
  197. //
  198. this.endDateLbl.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  199. this.endDateLbl.AutoSize = true;
  200. this.endDateLbl.Location = new System.Drawing.Point(16, 229);
  201. this.endDateLbl.Name = "endDateLbl";
  202. this.endDateLbl.Size = new System.Drawing.Size(21, 13);
  203. this.endDateLbl.TabIndex = 13;
  204. this.endDateLbl.Text = "Fin";
  205. this.endDateLbl.Visible = false;
  206. //
  207. // taskNameLbl
  208. //
  209. this.taskNameLbl.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  210. this.taskNameLbl.AutoSize = true;
  211. this.taskNameLbl.Location = new System.Drawing.Point(193, 203);
  212. this.taskNameLbl.Name = "taskNameLbl";
  213. this.taskNameLbl.Size = new System.Drawing.Size(29, 13);
  214. this.taskNameLbl.TabIndex = 15;
  215. this.taskNameLbl.Text = "Nom";
  216. this.taskNameLbl.Visible = false;
  217. //
  218. // taskNameTB
  219. //
  220. this.taskNameTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
  221. | System.Windows.Forms.AnchorStyles.Right)));
  222. this.taskNameTB.Location = new System.Drawing.Point(228, 200);
  223. this.taskNameTB.Name = "taskNameTB";
  224. this.taskNameTB.Size = new System.Drawing.Size(158, 20);
  225. this.taskNameTB.TabIndex = 16;
  226. this.taskNameTB.Visible = false;
  227. //
  228. // taskInfoCB
  229. //
  230. this.taskInfoCB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
  231. | System.Windows.Forms.AnchorStyles.Right)));
  232. this.taskInfoCB.Location = new System.Drawing.Point(228, 226);
  233. this.taskInfoCB.Name = "taskInfoCB";
  234. this.taskInfoCB.Size = new System.Drawing.Size(158, 20);
  235. this.taskInfoCB.TabIndex = 18;
  236. this.taskInfoCB.Visible = false;
  237. //
  238. // taskInfoLbl
  239. //
  240. this.taskInfoLbl.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  241. this.taskInfoLbl.AutoSize = true;
  242. this.taskInfoLbl.Location = new System.Drawing.Point(197, 229);
  243. this.taskInfoLbl.Name = "taskInfoLbl";
  244. this.taskInfoLbl.Size = new System.Drawing.Size(25, 13);
  245. this.taskInfoLbl.TabIndex = 17;
  246. this.taskInfoLbl.Text = "Info";
  247. this.taskInfoLbl.Visible = false;
  248. //
  249. // saveBtn
  250. //
  251. this.saveBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  252. this.saveBtn.Location = new System.Drawing.Point(308, 253);
  253. this.saveBtn.Name = "saveBtn";
  254. this.saveBtn.Size = new System.Drawing.Size(75, 23);
  255. this.saveBtn.TabIndex = 19;
  256. this.saveBtn.Text = "Sauver";
  257. this.saveBtn.UseVisualStyleBackColor = true;
  258. this.saveBtn.Visible = false;
  259. this.saveBtn.Click += new System.EventHandler(this.saveBtn_Click);
  260. //
  261. // planDateDTP
  262. //
  263. this.planDateDTP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  264. this.planDateDTP.Format = System.Windows.Forms.DateTimePickerFormat.Short;
  265. this.planDateDTP.Location = new System.Drawing.Point(55, 251);
  266. this.planDateDTP.Name = "planDateDTP";
  267. this.planDateDTP.Size = new System.Drawing.Size(90, 20);
  268. this.planDateDTP.TabIndex = 35;
  269. this.planDateDTP.Visible = false;
  270. //
  271. // planDateLbl
  272. //
  273. this.planDateLbl.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  274. this.planDateLbl.AutoSize = true;
  275. this.planDateLbl.Location = new System.Drawing.Point(16, 255);
  276. this.planDateLbl.Name = "planDateLbl";
  277. this.planDateLbl.Size = new System.Drawing.Size(35, 13);
  278. this.planDateLbl.TabIndex = 34;
  279. this.planDateLbl.Text = "Prévu";
  280. this.planDateLbl.Visible = false;
  281. //
  282. // prevTaskBtn
  283. //
  284. this.prevTaskBtn.Enabled = false;
  285. this.prevTaskBtn.Image = global::be.gaudry.bibliobrol.Properties.Resources.brolPrev;
  286. this.prevTaskBtn.Location = new System.Drawing.Point(312, 10);
  287. this.prevTaskBtn.Name = "prevTaskBtn";
  288. this.prevTaskBtn.Size = new System.Drawing.Size(23, 23);
  289. this.prevTaskBtn.TabIndex = 41;
  290. this.prevTaskBtn.UseVisualStyleBackColor = true;
  291. this.prevTaskBtn.Click += new System.EventHandler(this.prevTaskBtn_Click);
  292. //
  293. // nextTaskBtn
  294. //
  295. this.nextTaskBtn.Enabled = false;
  296. this.nextTaskBtn.Image = global::be.gaudry.bibliobrol.Properties.Resources.brolNext;
  297. this.nextTaskBtn.Location = new System.Drawing.Point(341, 10);
  298. this.nextTaskBtn.Name = "nextTaskBtn";
  299. this.nextTaskBtn.Size = new System.Drawing.Size(23, 23);
  300. this.nextTaskBtn.TabIndex = 42;
  301. this.nextTaskBtn.UseVisualStyleBackColor = true;
  302. this.nextTaskBtn.Click += new System.EventHandler(this.nextTaskBtn_Click);
  303. //
  304. // lastTaskBtn
  305. //
  306. this.lastTaskBtn.Enabled = false;
  307. this.lastTaskBtn.Image = global::be.gaudry.bibliobrol.Properties.Resources.brolLast;
  308. this.lastTaskBtn.Location = new System.Drawing.Point(370, 10);
  309. this.lastTaskBtn.Name = "lastTaskBtn";
  310. this.lastTaskBtn.Size = new System.Drawing.Size(23, 23);
  311. this.lastTaskBtn.TabIndex = 44;
  312. this.lastTaskBtn.UseVisualStyleBackColor = true;
  313. this.lastTaskBtn.Click += new System.EventHandler(this.lastTaskBtn_Click);
  314. //
  315. // firstTaskBtn
  316. //
  317. this.firstTaskBtn.Enabled = false;
  318. this.firstTaskBtn.Image = global::be.gaudry.bibliobrol.Properties.Resources.brolFirst;
  319. this.firstTaskBtn.Location = new System.Drawing.Point(283, 10);
  320. this.firstTaskBtn.Name = "firstTaskBtn";
  321. this.firstTaskBtn.Size = new System.Drawing.Size(23, 23);
  322. this.firstTaskBtn.TabIndex = 43;
  323. this.firstTaskBtn.UseVisualStyleBackColor = true;
  324. this.firstTaskBtn.Click += new System.EventHandler(this.firstTaskBtn_Click);
  325. //
  326. // detailsBtn
  327. //
  328. this.detailsBtn.Enabled = false;
  329. this.detailsBtn.Image = global::be.gaudry.bibliobrol.Properties.Resources.brolDetails;
  330. this.detailsBtn.Location = new System.Drawing.Point(254, 10);
  331. this.detailsBtn.Name = "detailsBtn";
  332. this.detailsBtn.Size = new System.Drawing.Size(23, 23);
  333. this.detailsBtn.TabIndex = 39;
  334. this.detailsBtn.UseVisualStyleBackColor = true;
  335. this.detailsBtn.Click += new System.EventHandler(this.detailsBtn_Click);
  336. //
  337. // loadTasksBtn
  338. //
  339. this.loadTasksBtn.Image = global::be.gaudry.bibliobrol.Properties.Resources.brolLoadBtn;
  340. this.loadTasksBtn.Location = new System.Drawing.Point(138, 10);
  341. this.loadTasksBtn.Name = "loadTasksBtn";
  342. this.loadTasksBtn.Size = new System.Drawing.Size(23, 23);
  343. this.loadTasksBtn.TabIndex = 38;
  344. this.loadTasksBtn.UseVisualStyleBackColor = true;
  345. this.loadTasksBtn.Click += new System.EventHandler(this.loadTasksBtn_Click);
  346. //
  347. // cleanPlanDateBtn
  348. //
  349. this.cleanPlanDateBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  350. this.cleanPlanDateBtn.Image = global::be.gaudry.bibliobrol.Properties.Resources.brolDelBtn;
  351. this.cleanPlanDateBtn.Location = new System.Drawing.Point(151, 251);
  352. this.cleanPlanDateBtn.Name = "cleanPlanDateBtn";
  353. this.cleanPlanDateBtn.Size = new System.Drawing.Size(26, 21);
  354. this.cleanPlanDateBtn.TabIndex = 37;
  355. this.cleanPlanDateBtn.TabStop = false;
  356. this.cleanPlanDateBtn.UseVisualStyleBackColor = true;
  357. this.cleanPlanDateBtn.Visible = false;
  358. this.cleanPlanDateBtn.Click += new System.EventHandler(this.cleanPlanDateBtn_Click);
  359. //
  360. // planDateBtn
  361. //
  362. this.planDateBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  363. this.planDateBtn.Image = global::be.gaudry.bibliobrol.Properties.Resources.brolCalendar;
  364. this.planDateBtn.Location = new System.Drawing.Point(55, 250);
  365. this.planDateBtn.Name = "planDateBtn";
  366. this.planDateBtn.Size = new System.Drawing.Size(26, 21);
  367. this.planDateBtn.TabIndex = 36;
  368. this.planDateBtn.TabStop = false;
  369. this.planDateBtn.UseVisualStyleBackColor = true;
  370. this.planDateBtn.Visible = false;
  371. this.planDateBtn.Click += new System.EventHandler(this.planDateBtn_Click);
  372. //
  373. // cleanEndDateBtn
  374. //
  375. this.cleanEndDateBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  376. this.cleanEndDateBtn.Image = global::be.gaudry.bibliobrol.Properties.Resources.brolDelBtn;
  377. this.cleanEndDateBtn.Location = new System.Drawing.Point(151, 225);
  378. this.cleanEndDateBtn.Name = "cleanEndDateBtn";
  379. this.cleanEndDateBtn.Size = new System.Drawing.Size(26, 21);
  380. this.cleanEndDateBtn.TabIndex = 33;
  381. this.cleanEndDateBtn.TabStop = false;
  382. this.cleanEndDateBtn.UseVisualStyleBackColor = true;
  383. this.cleanEndDateBtn.Visible = false;
  384. this.cleanEndDateBtn.Click += new System.EventHandler(this.cleanEndDateBtn_Click);
  385. //
  386. // endDateBtn
  387. //
  388. this.endDateBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  389. this.endDateBtn.Image = global::be.gaudry.bibliobrol.Properties.Resources.brolCalendar;
  390. this.endDateBtn.Location = new System.Drawing.Point(55, 224);
  391. this.endDateBtn.Name = "endDateBtn";
  392. this.endDateBtn.Size = new System.Drawing.Size(26, 21);
  393. this.endDateBtn.TabIndex = 32;
  394. this.endDateBtn.TabStop = false;
  395. this.endDateBtn.UseVisualStyleBackColor = true;
  396. this.endDateBtn.Visible = false;
  397. this.endDateBtn.Click += new System.EventHandler(this.endDateBtn_Click);
  398. //
  399. // editTaskBtn
  400. //
  401. this.editTaskBtn.Enabled = false;
  402. this.editTaskBtn.Image = global::be.gaudry.bibliobrol.Properties.Resources.brolEditBtn;
  403. this.editTaskBtn.Location = new System.Drawing.Point(225, 10);
  404. this.editTaskBtn.Name = "editTaskBtn";
  405. this.editTaskBtn.Size = new System.Drawing.Size(23, 23);
  406. this.editTaskBtn.TabIndex = 10;
  407. this.editTaskBtn.UseVisualStyleBackColor = true;
  408. this.editTaskBtn.Click += new System.EventHandler(this.editTaskBtn_Click);
  409. //
  410. // delTaskBtn
  411. //
  412. this.delTaskBtn.Enabled = false;
  413. this.delTaskBtn.Image = global::be.gaudry.bibliobrol.Properties.Resources.brolDelBtn;
  414. this.delTaskBtn.Location = new System.Drawing.Point(167, 10);
  415. this.delTaskBtn.Name = "delTaskBtn";
  416. this.delTaskBtn.Size = new System.Drawing.Size(23, 23);
  417. this.delTaskBtn.TabIndex = 9;
  418. this.delTaskBtn.UseVisualStyleBackColor = true;
  419. this.delTaskBtn.Click += new System.EventHandler(this.delTaskBtn_Click);
  420. //
  421. // addTaskBtn
  422. //
  423. this.addTaskBtn.Enabled = false;
  424. this.addTaskBtn.Image = global::be.gaudry.bibliobrol.Properties.Resources.brolAddBtn;
  425. this.addTaskBtn.Location = new System.Drawing.Point(196, 10);
  426. this.addTaskBtn.Name = "addTaskBtn";
  427. this.addTaskBtn.Size = new System.Drawing.Size(23, 23);
  428. this.addTaskBtn.TabIndex = 8;
  429. this.addTaskBtn.UseVisualStyleBackColor = true;
  430. this.addTaskBtn.Click += new System.EventHandler(this.addTaskBtn_Click);
  431. //
  432. // infoCtrl
  433. //
  434. this.infoCtrl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  435. | System.Windows.Forms.AnchorStyles.Left)
  436. | System.Windows.Forms.AnchorStyles.Right)));
  437. this.infoCtrl.Infos = "";
  438. this.infoCtrl.InfosTitle = "Informations";
  439. this.infoCtrl.InfosTitleBackColor = System.Drawing.SystemColors.Control;
  440. this.infoCtrl.InfosTitleForeColor = System.Drawing.SystemColors.ControlText;
  441. this.infoCtrl.Location = new System.Drawing.Point(0, 46);
  442. this.infoCtrl.Name = "infoCtrl";
  443. this.infoCtrl.Size = new System.Drawing.Size(400, 230);
  444. this.infoCtrl.TabIndex = 40;
  445. this.infoCtrl.Visible = false;
  446. //
  447. // TodoControl
  448. //
  449. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  450. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  451. this.Controls.Add(this.lastTaskBtn);
  452. this.Controls.Add(this.firstTaskBtn);
  453. this.Controls.Add(this.nextTaskBtn);
  454. this.Controls.Add(this.prevTaskBtn);
  455. this.Controls.Add(this.infoCtrl);
  456. this.Controls.Add(this.detailsBtn);
  457. this.Controls.Add(this.loadTasksBtn);
  458. this.Controls.Add(this.cleanPlanDateBtn);
  459. this.Controls.Add(this.planDateBtn);
  460. this.Controls.Add(this.planDateDTP);
  461. this.Controls.Add(this.planDateLbl);
  462. this.Controls.Add(this.cleanEndDateBtn);
  463. this.Controls.Add(this.endDateBtn);
  464. this.Controls.Add(this.saveBtn);
  465. this.Controls.Add(this.taskInfoCB);
  466. this.Controls.Add(this.taskInfoLbl);
  467. this.Controls.Add(this.taskNameTB);
  468. this.Controls.Add(this.taskNameLbl);
  469. this.Controls.Add(this.endDateDTP);
  470. this.Controls.Add(this.endDateLbl);
  471. this.Controls.Add(this.startDateDTP);
  472. this.Controls.Add(this.startDateLbl);
  473. this.Controls.Add(this.editTaskBtn);
  474. this.Controls.Add(this.delTaskBtn);
  475. this.Controls.Add(this.addTaskBtn);
  476. this.Controls.Add(this.tasksDGV);
  477. this.Controls.Add(this.titleLbl);
  478. this.Name = "TodoControl";
  479. this.Size = new System.Drawing.Size(400, 280);
  480. ((System.ComponentModel.ISupportInitialize)(this.tasksDGV)).EndInit();
  481. this.ResumeLayout(false);
  482. this.PerformLayout();
  483.  
  484. }
  485.  
  486. #endregion
  487.  
  488. private System.Windows.Forms.Label titleLbl;
  489. private System.Windows.Forms.DataGridView tasksDGV;
  490. private System.Windows.Forms.Button addTaskBtn;
  491. private System.Windows.Forms.Button delTaskBtn;
  492. private System.Windows.Forms.Button editTaskBtn;
  493. private System.Windows.Forms.Label startDateLbl;
  494. private System.Windows.Forms.DateTimePicker startDateDTP;
  495. private System.Windows.Forms.DateTimePicker endDateDTP;
  496. private System.Windows.Forms.Label endDateLbl;
  497. private System.Windows.Forms.Label taskNameLbl;
  498. private be.gaudry.view.controls.TextBoxDragDrop taskNameTB;
  499. private be.gaudry.view.controls.TextBoxDragDrop taskInfoCB;
  500. private System.Windows.Forms.Label taskInfoLbl;
  501. private System.Windows.Forms.Button saveBtn;
  502. private System.Windows.Forms.Button endDateBtn;
  503. private System.Windows.Forms.Button cleanEndDateBtn;
  504. private System.Windows.Forms.Button cleanPlanDateBtn;
  505. private System.Windows.Forms.Button planDateBtn;
  506. private System.Windows.Forms.DateTimePicker planDateDTP;
  507. private System.Windows.Forms.Label planDateLbl;
  508. private System.Windows.Forms.Button loadTasksBtn;
  509. private System.Windows.Forms.Button detailsBtn;
  510. private InfoControl infoCtrl;
  511. private System.Windows.Forms.DataGridViewTextBoxColumn startDate;
  512. private System.Windows.Forms.DataGridViewTextBoxColumn taskName;
  513. private System.Windows.Forms.DataGridViewTextBoxColumn planDate;
  514. private System.Windows.Forms.DataGridViewTextBoxColumn taskInfo;
  515. private System.Windows.Forms.DataGridViewTextBoxColumn endDate;
  516. private System.Windows.Forms.DataGridViewTextBoxColumn id;
  517. private System.Windows.Forms.Button prevTaskBtn;
  518. private System.Windows.Forms.Button nextTaskBtn;
  519. private System.Windows.Forms.Button firstTaskBtn;
  520. private System.Windows.Forms.Button lastTaskBtn;
  521. }
  522. }

Structure et Fichiers du projet

Afficher/masquer...


Répertoires contenus dans /var/www/bin/sniplets/bibliobrol/src/view/controls/ 
IcôneNomTailleModification
IcôneNomTailleModification
| _ Répertoire parent0 octets1715912125 17/05/2024 04:15:25
| _dao0 octets1541007199 31/10/2018 18:33:19
| _toolBars0 octets1541007200 31/10/2018 18:33:20
| _webInfo0 octets1541007201 31/10/2018 18:33:21
Fichiers contenus dans /var/www/bin/sniplets/bibliobrol/src/view/controls/ 
IcôneNomTailleModificationAction
IcôneNomTailleModificationAction
Afficher le fichier .cs|.csPersonSelectControl.cs4.89 Ko31/10/2018 18:32:57-refusé-
Afficher le fichier .cs|.csCreateStructureControl.cs7.49 Ko31/10/2018 18:32:56-refusé-
Afficher le fichier .cs|.csDBSelectControl.cs3.23 Ko31/10/2018 18:32:56-refusé-
Afficher le fichier .cs|.csPersonInfoControl.Designer.cs13.13 Ko31/10/2018 18:32:57-refusé-
Afficher le fichier .resx|.resxDirControl.resx5.68 Ko31/10/2018 18:32:56-refusé-
Afficher le fichier .resx|.resxBrolInfoControl.resx6.06 Ko31/10/2018 18:32:56-refusé-
Afficher le fichier .cs|.csBrolEditControl.cs25.36 Ko31/10/2018 18:32:55-refusé-
Afficher le fichier .cs|.csPersonEditControl.cs15.67 Ko31/10/2018 18:32:57-refusé-
Afficher le fichier .cs|.csSearchControl.cs18.88 Ko31/10/2018 18:32:57-refusé-
Afficher le fichier .resx|.resxDBSelectControl.resx5.88 Ko31/10/2018 18:32:56-refusé-
Afficher le fichier .cs|.csBrolInfoControl.Designer.cs22.81 Ko31/10/2018 18:32:56-refusé-
Afficher le fichier .cs|.csInfoControl.cs2.04 Ko31/10/2018 18:32:56-refusé-
Afficher le fichier .cs|.csDirControl.Designer.cs5.83 Ko31/10/2018 18:32:56-refusé-
Afficher le fichier .cs|.csSelectConsoleVerboseControl.cs5.49 Ko31/10/2018 18:32:57-refusé-
Afficher le fichier .cs|.csPersonSelectedEventArgs.cs779 octets31/10/2018 18:32:57-refusé-
Afficher le fichier .resx|.resxSelectConsoleVerboseControl.resx5.68 Ko31/10/2018 18:32:57-refusé-
Afficher le fichier .cs|.csTodoControl.cs13.73 Ko31/10/2018 18:32:58-refusé-
Afficher le fichier .cs|.csSelectConsoleVerboseControl.Designer.cs45.29 Ko31/10/2018 18:32:57-refusé-
Afficher le fichier .cs|.csBrolEditControl.Designer.cs40.09 Ko31/10/2018 18:32:56-refusé-
Afficher le fichier .cs|.csDBSelectControl.Designer.cs6.71 Ko31/10/2018 18:32:56-refusé-
Afficher le fichier .cs|.csPersonEditControl.Designer.cs27.54 Ko31/10/2018 18:32:57-refusé-
Afficher le fichier .resx|.resxPersonInfoControl.resx6.42 Ko31/10/2018 18:32:57-refusé-
Afficher le fichier .cs|.csCreateStructureControl.Designer.cs5 Ko31/10/2018 18:32:56-refusé-
Afficher le fichier .cs|.csDirPathModifiedEventArgs.cs871 octets31/10/2018 18:32:56-refusé-
Afficher le fichier .cs|.csInfoControl.Designer.cs3.18 Ko31/10/2018 18:32:56-refusé-
Afficher le fichier .cs|.csBrolInfoControl.cs5.14 Ko31/10/2018 18:32:56-refusé-
Afficher le fichier .resx|.resxBrolEditControl.resx6.04 Ko31/10/2018 18:32:56-refusé-
Afficher le fichier .cs|.csPersonInfoControl.cs2.22 Ko31/10/2018 18:32:57-refusé-
Afficher le fichier .resx|.resxInfoControl.resx5.68 Ko31/10/2018 18:32:56-refusé-
Afficher le fichier .cs|.csDirControl.cs4.51 Ko31/10/2018 18:32:56-refusé-
Afficher le fichier .resx|.resxCreateStructureControl.resx6.44 Ko31/10/2018 18:32:56-refusé-
Afficher le fichier .cs|.csSerieEditControl.cs2.58 Ko31/10/2018 18:32:58-refusé-
Afficher le fichier .resx|.resxSerieEditControl.resx7.45 Ko31/10/2018 18:32:58-refusé-
Afficher le fichier .resx|.resxTodoControl.resx6.76 Ko31/10/2018 18:32:58-refusé-
Afficher le fichier .cs|.csTodoControl.Designer.cs28.27 Ko31/10/2018 18:32:58-refusé-
Afficher le fichier .resx|.resxSearchControl.resx6.43 Ko31/10/2018 18:32:57-refusé-
Afficher le fichier .cs|.csPersonSelectControl.Designer.cs14.74 Ko31/10/2018 18:32:57-refusé-
Afficher le fichier .cs|.csSearchControl.Designer.cs25.75 Ko31/10/2018 18:32:57-refusé-
Afficher le fichier .resx|.resxPersonEditControl.resx7.96 Ko31/10/2018 18:32:57-refusé-
Afficher le fichier .cs|.csSerieEditControl.Designer.cs6.65 Ko31/10/2018 18:32:58-refusé-
Afficher le fichier .resx|.resxPersonSelectControl.resx5.68 Ko31/10/2018 18:32:57-refusé-

Utilisation de l'explorateur de code

  • Navigation :
    • Un clic sur une icône de répertoire ouvre ce répertoire pour en afficher les fichiers.
    • Lorsque le répertoire en cours ne contient pas de sous-répertoires il est possible de remonter vers le répertoire parent.
    • La structure de répertoires en treetable (tableau en forme d'arborescence) n'est plus possibledans cette version.
    • Un clic sur une icône de fichier ouvre ce fichier pour en afficher le code avec la coloration syntaxique adaptée en fonction du langage principal utilisé dans le fichier.
  • Affichage :
    • Il est possible de trier les répertoires ou les fichiers selon certains critères (nom, taille, date).
  • Actions :
    • Les actions possible sur les fichiers dépendent de vos droits d'utilisateur sur le site. Veuillez activer le mode utilisateur pour activer les actions.

English translation

You have asked to visit this site in English. For now, only the interface is translated, but not all the content yet.

If you want to help me in translations, your contribution is welcome. All you need to do is register on the site, and send me a message asking me to add you to the group of translators, which will give you the opportunity to translate the pages you want. A link at the bottom of each translated page indicates that you are the translator, and has a link to your profile.

Thank you in advance.

Document created the 16/10/2009, last modified the 26/10/2018
Source of the printed document:https://www.gaudry.be/en/cs-bibliobrol-source-rf-view/controls/TodoControl.Designer.cs.html

The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.