Keine Cache-Version

Caching deaktiviert Standardeinstellung für diese Seite:aktiviert (code LNG204)
Wenn die Anzeige zu langsam ist, können Sie den Benutzermodus deaktivieren, um die zwischengespeicherte Version anzuzeigen.

ChartControl.Designer.cs

Description du code

ChartControl.Designer.cs est un fichier du projet BrolDev.
Ce fichier est situé dans /var/www/bin/sniplets/bibliobrol/broldev/src/.

Projet BrolDev : Librairie de composants réutilisables pour les applications BrolDev en CSharp.

Code source ou contenu du fichier

  1. namespace be.gaudry.view.controls
  2. {
  3. partial class ChartControl
  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. this.mainGB = new System.Windows.Forms.GroupBox();
  33. this.splitContainer = new System.Windows.Forms.SplitContainer();
  34. this.legendDGV = new System.Windows.Forms.DataGridView();
  35. this.id = new System.Windows.Forms.DataGridViewTextBoxColumn();
  36. this.valCol = new System.Windows.Forms.DataGridViewTextBoxColumn();
  37. this.percentCol = new System.Windows.Forms.DataGridViewTextBoxColumn();
  38. this.nbCol = new System.Windows.Forms.DataGridViewTextBoxColumn();
  39. this.chartPanel = new System.Windows.Forms.Panel();
  40. this.chartHSB = new System.Windows.Forms.HScrollBar();
  41. this.chartVSB = new System.Windows.Forms.VScrollBar();
  42. this.infoLbl = new System.Windows.Forms.Label();
  43. this.toolStrip = new System.Windows.Forms.ToolStrip();
  44. this.sortAscTsSB = new System.Windows.Forms.ToolStripSplitButton();
  45. this.sortAscTitleTsMi = new System.Windows.Forms.ToolStripMenuItem();
  46. this.sortAscNbTsMi = new System.Windows.Forms.ToolStripMenuItem();
  47. this.sortAscPercentTsMi = new System.Windows.Forms.ToolStripMenuItem();
  48. this.sortDescTsSB = new System.Windows.Forms.ToolStripSplitButton();
  49. this.sortDescTitleTsMi = new System.Windows.Forms.ToolStripMenuItem();
  50. this.sortDescNbTsMi = new System.Windows.Forms.ToolStripMenuItem();
  51. this.sortDescPercentTsMi = new System.Windows.Forms.ToolStripMenuItem();
  52. this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
  53. this.printTSB = new System.Windows.Forms.ToolStripButton();
  54. this.saveDGVTsB = new System.Windows.Forms.ToolStripButton();
  55. this.mainGB.SuspendLayout();
  56. this.splitContainer.Panel1.SuspendLayout();
  57. this.splitContainer.Panel2.SuspendLayout();
  58. this.splitContainer.SuspendLayout();
  59. ((System.ComponentModel.ISupportInitialize)(this.legendDGV)).BeginInit();
  60. this.toolStrip.SuspendLayout();
  61. this.SuspendLayout();
  62. //
  63. // mainGB
  64. //
  65. this.mainGB.Controls.Add(this.splitContainer);
  66. this.mainGB.Dock = System.Windows.Forms.DockStyle.Fill;
  67. this.mainGB.Location = new System.Drawing.Point(33, 0);
  68. this.mainGB.Name = "mainGB";
  69. this.mainGB.Padding = new System.Windows.Forms.Padding(8);
  70. this.mainGB.Size = new System.Drawing.Size(434, 238);
  71. this.mainGB.TabIndex = 1;
  72. this.mainGB.TabStop = false;
  73. this.mainGB.Text = "Graphique";
  74. //
  75. // splitContainer
  76. //
  77. this.splitContainer.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  78. this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
  79. this.splitContainer.Location = new System.Drawing.Point(8, 21);
  80. this.splitContainer.Name = "splitContainer";
  81. //
  82. // splitContainer.Panel1
  83. //
  84. this.splitContainer.Panel1.AutoScroll = true;
  85. this.splitContainer.Panel1.Controls.Add(this.legendDGV);
  86. //
  87. // splitContainer.Panel2
  88. //
  89. this.splitContainer.Panel2.Controls.Add(this.chartPanel);
  90. this.splitContainer.Panel2.Controls.Add(this.chartHSB);
  91. this.splitContainer.Panel2.Controls.Add(this.chartVSB);
  92. this.splitContainer.Size = new System.Drawing.Size(418, 209);
  93. this.splitContainer.SplitterDistance = 216;
  94. this.splitContainer.SplitterWidth = 10;
  95. this.splitContainer.TabIndex = 2;
  96. //
  97. // legendDGV
  98. //
  99. this.legendDGV.AllowUserToAddRows = false;
  100. this.legendDGV.AllowUserToDeleteRows = false;
  101. this.legendDGV.AllowUserToOrderColumns = true;
  102. this.legendDGV.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
  103. this.legendDGV.BackgroundColor = System.Drawing.SystemColors.Control;
  104. this.legendDGV.BorderStyle = System.Windows.Forms.BorderStyle.None;
  105. this.legendDGV.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.Raised;
  106. this.legendDGV.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  107. this.legendDGV.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  108. this.id,
  109. this.valCol,
  110. this.percentCol,
  111. this.nbCol});
  112. this.legendDGV.Dock = System.Windows.Forms.DockStyle.Fill;
  113. this.legendDGV.Location = new System.Drawing.Point(0, 0);
  114. this.legendDGV.Name = "legendDGV";
  115. this.legendDGV.ReadOnly = true;
  116. this.legendDGV.RowHeadersVisible = false;
  117. this.legendDGV.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  118. this.legendDGV.Size = new System.Drawing.Size(212, 205);
  119. this.legendDGV.TabIndex = 0;
  120. this.legendDGV.SelectionChanged += new System.EventHandler(this.legendDGV_SelectionChanged);
  121. //
  122. // id
  123. //
  124. this.id.FillWeight = 1F;
  125. this.id.HeaderText = "id";
  126. this.id.Name = "id";
  127. this.id.ReadOnly = true;
  128. this.id.Visible = false;
  129. //
  130. // valCol
  131. //
  132. this.valCol.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
  133. this.valCol.FillWeight = 113.0228F;
  134. this.valCol.HeaderText = "";
  135. this.valCol.Name = "valCol";
  136. this.valCol.ReadOnly = true;
  137. this.valCol.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  138. //
  139. // percentCol
  140. //
  141. dataGridViewCellStyle1.Format = "N2";
  142. dataGridViewCellStyle1.NullValue = null;
  143. this.percentCol.DefaultCellStyle = dataGridViewCellStyle1;
  144. this.percentCol.FillWeight = 24.59277F;
  145. this.percentCol.HeaderText = "%";
  146. this.percentCol.Name = "percentCol";
  147. this.percentCol.ReadOnly = true;
  148. this.percentCol.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  149. //
  150. // nbCol
  151. //
  152. this.nbCol.FillWeight = 23.87692F;
  153. this.nbCol.HeaderText = "nb";
  154. this.nbCol.Name = "nbCol";
  155. this.nbCol.ReadOnly = true;
  156. this.nbCol.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  157. //
  158. // chartPanel
  159. //
  160. this.chartPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  161. | System.Windows.Forms.AnchorStyles.Left)
  162. | System.Windows.Forms.AnchorStyles.Right)));
  163. this.chartPanel.Location = new System.Drawing.Point(3, 3);
  164. this.chartPanel.Name = "chartPanel";
  165. this.chartPanel.Size = new System.Drawing.Size(162, 182);
  166. this.chartPanel.TabIndex = 2;
  167. //
  168. // chartHSB
  169. //
  170. this.chartHSB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
  171. | System.Windows.Forms.AnchorStyles.Right)));
  172. this.chartHSB.Location = new System.Drawing.Point(0, 188);
  173. this.chartHSB.Maximum = 250;
  174. this.chartHSB.Minimum = -250;
  175. this.chartHSB.Name = "chartHSB";
  176. this.chartHSB.Size = new System.Drawing.Size(168, 17);
  177. this.chartHSB.TabIndex = 0;
  178. this.chartHSB.Scroll += new System.Windows.Forms.ScrollEventHandler(this.chartHSB_Scroll);
  179. //
  180. // chartVSB
  181. //
  182. this.chartVSB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  183. | System.Windows.Forms.AnchorStyles.Right)));
  184. this.chartVSB.LargeChange = 1;
  185. this.chartVSB.Location = new System.Drawing.Point(168, 0);
  186. this.chartVSB.Maximum = 0;
  187. this.chartVSB.Minimum = -50;
  188. this.chartVSB.Name = "chartVSB";
  189. this.chartVSB.Size = new System.Drawing.Size(20, 188);
  190. this.chartVSB.TabIndex = 1;
  191. this.chartVSB.Value = -10;
  192. this.chartVSB.Scroll += new System.Windows.Forms.ScrollEventHandler(this.chartVSB_Scroll);
  193. //
  194. // infoLbl
  195. //
  196. this.infoLbl.Dock = System.Windows.Forms.DockStyle.Fill;
  197. this.infoLbl.Location = new System.Drawing.Point(0, 0);
  198. this.infoLbl.Name = "infoLbl";
  199. this.infoLbl.Size = new System.Drawing.Size(467, 238);
  200. this.infoLbl.TabIndex = 3;
  201. this.infoLbl.Text = "Aucune donnée à afficher...";
  202. this.infoLbl.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  203. //
  204. // toolStrip
  205. //
  206. this.toolStrip.Dock = System.Windows.Forms.DockStyle.Left;
  207. this.toolStrip.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
  208. this.toolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  209. this.sortAscTsSB,
  210. this.sortDescTsSB,
  211. this.toolStripSeparator1,
  212. this.printTSB,
  213. this.saveDGVTsB});
  214. this.toolStrip.Location = new System.Drawing.Point(0, 0);
  215. this.toolStrip.Name = "toolStrip";
  216. this.toolStrip.Size = new System.Drawing.Size(33, 238);
  217. this.toolStrip.TabIndex = 3;
  218. this.toolStrip.Text = "Outils du graphique";
  219. //
  220. // sortAscTsSB
  221. //
  222. this.sortAscTsSB.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  223. this.sortAscTsSB.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  224. this.sortAscTitleTsMi,
  225. this.sortAscNbTsMi,
  226. this.sortAscPercentTsMi});
  227. this.sortAscTsSB.Image = global::be.gaudry.Properties.Resources.SortHS;
  228. this.sortAscTsSB.ImageTransparentColor = System.Drawing.Color.Magenta;
  229. this.sortAscTsSB.Name = "sortAscTsSB";
  230. this.sortAscTsSB.Size = new System.Drawing.Size(30, 20);
  231. this.sortAscTsSB.Text = "Tri ascendant";
  232. //
  233. // sortAscTitleTsMi
  234. //
  235. this.sortAscTitleTsMi.Name = "sortAscTitleTsMi";
  236. this.sortAscTitleTsMi.Size = new System.Drawing.Size(152, 22);
  237. this.sortAscTitleTsMi.Text = "Titre";
  238. this.sortAscTitleTsMi.Click += new System.EventHandler(this.sortAscTitleTsMi_Click);
  239. //
  240. // sortAscNbTsMi
  241. //
  242. this.sortAscNbTsMi.Name = "sortAscNbTsMi";
  243. this.sortAscNbTsMi.Size = new System.Drawing.Size(152, 22);
  244. this.sortAscNbTsMi.Text = "Nombre";
  245. this.sortAscNbTsMi.Click += new System.EventHandler(this.sortAscNbTsMi_Click);
  246. //
  247. // sortAscPercentTsMi
  248. //
  249. this.sortAscPercentTsMi.Name = "sortAscPercentTsMi";
  250. this.sortAscPercentTsMi.Size = new System.Drawing.Size(152, 22);
  251. this.sortAscPercentTsMi.Text = "Pourcentage";
  252. this.sortAscPercentTsMi.Click += new System.EventHandler(this.sortAscPercentTsMi_Click);
  253. //
  254. // sortDescTsSB
  255. //
  256. this.sortDescTsSB.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  257. this.sortDescTsSB.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  258. this.sortDescTitleTsMi,
  259. this.sortDescNbTsMi,
  260. this.sortDescPercentTsMi});
  261. this.sortDescTsSB.Image = global::be.gaudry.Properties.Resources.SortDownHS;
  262. this.sortDescTsSB.ImageTransparentColor = System.Drawing.Color.Magenta;
  263. this.sortDescTsSB.Name = "sortDescTsSB";
  264. this.sortDescTsSB.Size = new System.Drawing.Size(30, 20);
  265. this.sortDescTsSB.Text = "Tri descendant";
  266. //
  267. // sortDescTitleTsMi
  268. //
  269. this.sortDescTitleTsMi.Name = "sortDescTitleTsMi";
  270. this.sortDescTitleTsMi.Size = new System.Drawing.Size(152, 22);
  271. this.sortDescTitleTsMi.Text = "Titre";
  272. this.sortDescTitleTsMi.Click += new System.EventHandler(this.sortDescTitleTsMi_Click);
  273. //
  274. // sortDescNbTsMi
  275. //
  276. this.sortDescNbTsMi.Name = "sortDescNbTsMi";
  277. this.sortDescNbTsMi.Size = new System.Drawing.Size(152, 22);
  278. this.sortDescNbTsMi.Text = "Nombre";
  279. this.sortDescNbTsMi.Click += new System.EventHandler(this.sortDescNbTsMi_Click);
  280. //
  281. // sortDescPercentTsMi
  282. //
  283. this.sortDescPercentTsMi.Name = "sortDescPercentTsMi";
  284. this.sortDescPercentTsMi.Size = new System.Drawing.Size(152, 22);
  285. this.sortDescPercentTsMi.Text = "Pourcentage";
  286. this.sortDescPercentTsMi.Click += new System.EventHandler(this.sortDescPercentTsMi_Click);
  287. //
  288. // toolStripSeparator1
  289. //
  290. this.toolStripSeparator1.Name = "toolStripSeparator1";
  291. this.toolStripSeparator1.Size = new System.Drawing.Size(30, 6);
  292. //
  293. // printTSB
  294. //
  295. this.printTSB.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  296. this.printTSB.Image = global::be.gaudry.Properties.Resources.PrintHS;
  297. this.printTSB.ImageTransparentColor = System.Drawing.Color.Magenta;
  298. this.printTSB.Name = "printTSB";
  299. this.printTSB.Size = new System.Drawing.Size(30, 20);
  300. this.printTSB.Text = "Imprimer le tableau";
  301. this.printTSB.Click += new System.EventHandler(this.printTSB_Click);
  302. //
  303. // saveDGVTsB
  304. //
  305. this.saveDGVTsB.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  306. this.saveDGVTsB.Image = global::be.gaudry.Properties.Resources.saveHS;
  307. this.saveDGVTsB.ImageTransparentColor = System.Drawing.Color.Magenta;
  308. this.saveDGVTsB.Name = "saveDGVTsB";
  309. this.saveDGVTsB.Size = new System.Drawing.Size(30, 20);
  310. this.saveDGVTsB.Text = "Sauver le tableau...";
  311. this.saveDGVTsB.Click += new System.EventHandler(this.saveDGVTsB_Click);
  312. //
  313. // ChartControl
  314. //
  315. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  316. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  317. this.Controls.Add(this.mainGB);
  318. this.Controls.Add(this.toolStrip);
  319. this.Controls.Add(this.infoLbl);
  320. this.Name = "ChartControl";
  321. this.Size = new System.Drawing.Size(467, 238);
  322. this.Load += new System.EventHandler(this.ChartControl_Load);
  323. this.mainGB.ResumeLayout(false);
  324. this.splitContainer.Panel1.ResumeLayout(false);
  325. this.splitContainer.Panel2.ResumeLayout(false);
  326. this.splitContainer.ResumeLayout(false);
  327. ((System.ComponentModel.ISupportInitialize)(this.legendDGV)).EndInit();
  328. this.toolStrip.ResumeLayout(false);
  329. this.toolStrip.PerformLayout();
  330. this.ResumeLayout(false);
  331. this.PerformLayout();
  332.  
  333. }
  334.  
  335. #endregion
  336.  
  337. private System.Windows.Forms.GroupBox mainGB;
  338. private System.Windows.Forms.VScrollBar chartVSB;
  339. private System.Windows.Forms.HScrollBar chartHSB;
  340. private System.Windows.Forms.SplitContainer splitContainer;
  341. private System.Windows.Forms.Panel chartPanel;
  342. private System.Windows.Forms.DataGridView legendDGV;
  343. private System.Windows.Forms.Label infoLbl;
  344. private System.Windows.Forms.ToolStrip toolStrip;
  345. private System.Windows.Forms.ToolStripButton printTSB;
  346. private System.Windows.Forms.ToolStripSplitButton sortAscTsSB;
  347. private System.Windows.Forms.ToolStripMenuItem sortAscTitleTsMi;
  348. private System.Windows.Forms.ToolStripMenuItem sortAscNbTsMi;
  349. private System.Windows.Forms.ToolStripMenuItem sortAscPercentTsMi;
  350. private System.Windows.Forms.ToolStripSplitButton sortDescTsSB;
  351. private System.Windows.Forms.ToolStripMenuItem sortDescTitleTsMi;
  352. private System.Windows.Forms.ToolStripMenuItem sortDescNbTsMi;
  353. private System.Windows.Forms.ToolStripMenuItem sortDescPercentTsMi;
  354. private System.Windows.Forms.DataGridViewTextBoxColumn id;
  355. private System.Windows.Forms.DataGridViewTextBoxColumn valCol;
  356. private System.Windows.Forms.DataGridViewTextBoxColumn percentCol;
  357. private System.Windows.Forms.DataGridViewTextBoxColumn nbCol;
  358. private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
  359. private System.Windows.Forms.ToolStripButton saveDGVTsB;
  360. }
  361. }

Structure et Fichiers du projet

Afficher/masquer...


Répertoires contenus dans /var/www/bin/sniplets/bibliobrol/broldev/src/view/controls/ 
IcôneNomTailleModification
Pas de sous-répertoires.
IcôneNomTailleModification
| _ Répertoire parent0 octets1714360591 29/04/2024 05:16:31
Fichiers contenus dans /var/www/bin/sniplets/bibliobrol/broldev/src/view/controls/ 
IcôneNomTailleModificationAction
IcôneNomTailleModificationAction
Afficher le fichier .cs|.csToolBarHomeControl.Designer.cs7.41 Ko31/10/2018 18:33:12-refusé-
Afficher le fichier .cs|.csWizardUserControl.Designer.cs6.79 Ko31/10/2018 18:33:13-refusé-
Afficher le fichier .cs|.csHeaderPanel.Designer.cs1.19 Ko31/10/2018 18:33:11-refusé-
Afficher le fichier .cs|.csDGVLayoutOptionsControl.cs7.55 Ko31/10/2018 18:33:11-refusé-
Afficher le fichier .cs|.csXPGroupBox.cs15.83 Ko31/10/2018 18:33:13-refusé-
Afficher le fichier .cs|.csWizardXpUserControl.Designer.cs7.85 Ko31/10/2018 18:33:13-refusé-
Afficher le fichier .cs|.csToolBarHomeControl.cs2.32 Ko31/10/2018 18:33:12-refusé-
Afficher le fichier .cs|.csVersionControl.Designer.cs4.09 Ko31/10/2018 18:33:12-refusé-
Afficher le fichier .cs|.csWizardUserControl.cs2.01 Ko31/10/2018 18:33:13-refusé-
Afficher le fichier .resx|.resxWizardXpUserControl.resx5.68 Ko31/10/2018 18:33:13-refusé-
Afficher le fichier .cs|.csBrolBoxUserControl.Designer.cs5.92 Ko31/10/2018 18:33:10-refusé-
Afficher le fichier .resx|.resxChartControl.resx6.58 Ko31/10/2018 18:33:11-refusé-
Afficher le fichier .cs|.csHeaderPanel.cs35.93 Ko31/10/2018 18:33:11-refusé-
Afficher le fichier .cs|.csIWizardUC.cs2.35 Ko31/10/2018 18:33:11-refusé-
Afficher le fichier .resx|.resxAboutUserControl.resx5.68 Ko31/10/2018 18:33:10-refusé-
Afficher le fichier .cs|.csTextBoxDragDrop.cs8.59 Ko31/10/2018 18:33:12-refusé-
Afficher le fichier .cs|.csSystemInfoControl.cs5.46 Ko31/10/2018 18:33:11-refusé-
Afficher le fichier .resx|.resxXPGroupBox.resx17.7 Ko31/10/2018 18:33:13-refusé-
Afficher le fichier .cs|.csHeaderPanelNativeMethods.cs21.09 Ko31/10/2018 18:33:11-refusé-
Afficher le fichier .cs|.csToolBarManagerControl.cs6.99 Ko31/10/2018 18:33:12-refusé-
Afficher le fichier .cs|.csTextBoxDragDrop.Designer.cs1.11 Ko31/10/2018 18:33:12-refusé-
Afficher le fichier .resx|.resxSystemInfoControl.resx6.22 Ko31/10/2018 18:33:12-refusé-
Afficher le fichier .cs|.csSystemInfoControl.Designer.cs4.79 Ko31/10/2018 18:33:12-refusé-
Afficher le fichier .resx|.resxHeaderPanel.resx5.85 Ko31/10/2018 18:33:11-refusé-
Afficher le fichier .cs|.csScrollablePictureBoxUserControl.cs5.55 Ko31/10/2018 18:33:11-refusé-
Afficher le fichier .cs|.csBrolBoxUserControl.cs4.7 Ko31/10/2018 18:33:10-refusé-
Afficher le fichier .resx|.resxDGVLayoutOptionsControl.resx5.68 Ko31/10/2018 18:33:11-refusé-
Afficher le fichier .resx|.resxWizardUserControl.resx5.68 Ko31/10/2018 18:33:13-refusé-
Afficher le fichier .cs|.csUpdateControl.cs7.55 Ko31/10/2018 18:33:12-refusé-
Afficher le fichier .cs|.csIconList.cs2.68 Ko31/10/2018 18:33:11-refusé-
Afficher le fichier .cs|.csVersionControl.cs463 octets31/10/2018 18:33:12-refusé-
Afficher le fichier .resx|.resxBrolBoxUserControl.resx5.68 Ko31/10/2018 18:33:10-refusé-
Afficher le fichier .cs|.csAboutUserControl.cs6.75 Ko31/10/2018 18:33:10-refusé-
Afficher le fichier .resx|.resxToolBarManagerControl.resx5.88 Ko31/10/2018 18:33:12-refusé-
Afficher le fichier .cs|.csToolBarManagerControl.Designer.cs10.66 Ko31/10/2018 18:33:12-refusé-
Afficher le fichier .cs|.csIToolBarControl.cs1.07 Ko31/10/2018 18:33:11-refusé-
Afficher le fichier .cs|.csWizardXpUserControl.cs8.11 Ko31/10/2018 18:33:13-refusé-
Afficher le fichier .cs|.csImageCombo.cs15.49 Ko31/10/2018 18:33:11-refusé-
Afficher le fichier .cs|.csAboutUserControl.Designer.cs12.31 Ko31/10/2018 18:33:10-refusé-
Afficher le fichier .resx|.resxScrollablePictureBoxUserControl.resx5.68 Ko31/10/2018 18:33:11-refusé-
Afficher le fichier .cs|.csScrollablePictureBoxUserControl.Designer.cs5.64 Ko31/10/2018 18:33:11-refusé-
Afficher le fichier .resx|.resxVersionControl.resx5.68 Ko31/10/2018 18:33:13-refusé-
Afficher le fichier .cs|.csChartControl.Designer.cs18.45 Ko31/10/2018 18:33:10-refusé-
Afficher le fichier .cs|.csUpdateControl.Designer.cs3.92 Ko31/10/2018 18:33:12-refusé-
Afficher le fichier .resx|.resxUpdateControl.resx5.68 Ko31/10/2018 18:33:12-refusé-
Afficher le fichier .cs|.csChartControl.cs15.11 Ko31/10/2018 18:33:10-refusé-
Afficher le fichier .cs|.csDGVLayoutOptionsControl.Designer.cs17.39 Ko31/10/2018 18:33:11-refusé-
Afficher le fichier .cs|.csToolStrip.cs1.06 Ko31/10/2018 18:33:12-refusé-
Afficher le fichier .cs|.csIconList.Designer.cs1.1 Ko31/10/2018 18:33:11-refusé-
Afficher le fichier .resx|.resxToolBarHomeControl.resx48.51 Ko31/10/2018 18:33:12-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.

Deutsche Übersetzung

Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.

Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.

Vielen Dank im Voraus.

Dokument erstellt 16/10/2009, zuletzt geändert 26/10/2018
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/cs-broldev-source-rf-view/controls/ChartControl.Designer.cs.html

Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.