ExceptionDialog.Designer.cs

Description du code

ExceptionDialog.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.dialogs
  2. {
  3. partial class ExceptionDialog
  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 Windows Form
  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. this.stackTraceRTB = new System.Windows.Forms.RichTextBox();
  32. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  33. this.okBtn = new System.Windows.Forms.Button();
  34. this.messageLbl = new System.Windows.Forms.Label();
  35. this.displayStackBtn = new System.Windows.Forms.Button();
  36. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  37. this.SuspendLayout();
  38. //
  39. // stackTraceRTB
  40. //
  41. this.stackTraceRTB.AcceptsTab = true;
  42. this.stackTraceRTB.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  43. | System.Windows.Forms.AnchorStyles.Left)
  44. | System.Windows.Forms.AnchorStyles.Right)));
  45. this.stackTraceRTB.BackColor = System.Drawing.Color.White;
  46. this.stackTraceRTB.ForeColor = System.Drawing.Color.Black;
  47. this.stackTraceRTB.Location = new System.Drawing.Point(152, 12);
  48. this.stackTraceRTB.Name = "stackTraceRTB";
  49. this.stackTraceRTB.Size = new System.Drawing.Size(446, 221);
  50. this.stackTraceRTB.TabIndex = 0;
  51. this.stackTraceRTB.TabStop = false;
  52. this.stackTraceRTB.Text = "";
  53. this.stackTraceRTB.Visible = false;
  54. //
  55. // pictureBox1
  56. //
  57. this.pictureBox1.Image = global::be.gaudry.Properties.Resources.AboutBoxBrolDev;
  58. this.pictureBox1.Location = new System.Drawing.Point(1, 1);
  59. this.pictureBox1.Name = "pictureBox1";
  60. this.pictureBox1.Size = new System.Drawing.Size(142, 271);
  61. this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
  62. this.pictureBox1.TabIndex = 2;
  63. this.pictureBox1.TabStop = false;
  64. //
  65. // okBtn
  66. //
  67. this.okBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  68. this.okBtn.DialogResult = System.Windows.Forms.DialogResult.OK;
  69. this.okBtn.Location = new System.Drawing.Point(523, 240);
  70. this.okBtn.Name = "okBtn";
  71. this.okBtn.Size = new System.Drawing.Size(75, 23);
  72. this.okBtn.TabIndex = 1;
  73. this.okBtn.Text = "Ok";
  74. this.okBtn.UseVisualStyleBackColor = true;
  75. this.okBtn.Click += new System.EventHandler(this.okBtn_Click);
  76. //
  77. // messageLbl
  78. //
  79. this.messageLbl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  80. | System.Windows.Forms.AnchorStyles.Left)
  81. | System.Windows.Forms.AnchorStyles.Right)));
  82. this.messageLbl.AutoEllipsis = true;
  83. this.messageLbl.Location = new System.Drawing.Point(152, 12);
  84. this.messageLbl.Name = "messageLbl";
  85. this.messageLbl.Size = new System.Drawing.Size(446, 225);
  86. this.messageLbl.TabIndex = 3;
  87. //
  88. // displayStackBtn
  89. //
  90. this.displayStackBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  91. this.displayStackBtn.Location = new System.Drawing.Point(152, 240);
  92. this.displayStackBtn.Name = "displayStackBtn";
  93. this.displayStackBtn.Size = new System.Drawing.Size(97, 23);
  94. this.displayStackBtn.TabIndex = 4;
  95. this.displayStackBtn.Text = "Informations...";
  96. this.displayStackBtn.UseVisualStyleBackColor = true;
  97. this.displayStackBtn.Visible = false;
  98. this.displayStackBtn.Click += new System.EventHandler(this.displayStackBtn_Click);
  99. //
  100. // ExceptionDialog
  101. //
  102. this.AcceptButton = this.okBtn;
  103. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  104. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  105. this.ClientSize = new System.Drawing.Size(610, 275);
  106. this.ControlBox = false;
  107. this.Controls.Add(this.displayStackBtn);
  108. this.Controls.Add(this.messageLbl);
  109. this.Controls.Add(this.okBtn);
  110. this.Controls.Add(this.pictureBox1);
  111. this.Controls.Add(this.stackTraceRTB);
  112. this.Name = "ExceptionDialog";
  113. this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Show;
  114. this.Text = "Erreur";
  115. this.TopMost = true;
  116. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  117. this.ResumeLayout(false);
  118.  
  119. }
  120.  
  121. #endregion
  122.  
  123. private System.Windows.Forms.RichTextBox stackTraceRTB;
  124. private System.Windows.Forms.PictureBox pictureBox1;
  125. private System.Windows.Forms.Button okBtn;
  126. private System.Windows.Forms.Label messageLbl;
  127. private System.Windows.Forms.Button displayStackBtn;
  128. }
  129. }

Structure et Fichiers du projet

Afficher/masquer...


Répertoires contenus dans /var/www/bin/sniplets/bibliobrol/broldev/src/view/dialogs/ 
IcôneNomTailleModification
Pas de sous-répertoires.
IcôneNomTailleModification
| _ Répertoire parent0 octets1717007436 29/05/2024 20:30:36
Fichiers contenus dans /var/www/bin/sniplets/bibliobrol/broldev/src/view/dialogs/ 
IcôneNomTailleModificationAction
IcôneNomTailleModificationAction
Afficher le fichier .cs|.csTrackIntParameterDialog.cs4.2 Ko31/10/2018 18:33:15-refusé-
Afficher le fichier .cs|.csHSLDialog.cs8.25 Ko31/10/2018 18:33:14-refusé-
Afficher le fichier .cs|.csExceptionDialog.cs3.58 Ko31/10/2018 18:33:14-refusé-
Afficher le fichier .cs|.csVersionForm.Designer.cs6.72 Ko31/10/2018 18:33:15-refusé-
Afficher le fichier .resx|.resxCriticalExceptionDialog.resx5.68 Ko31/10/2018 18:33:13-refusé-
Afficher le fichier .resx|.resxTrackFloatParameterDialog.resx5.68 Ko31/10/2018 18:33:15-refusé-
Afficher le fichier .cs|.csDGVLayoutOptionsDialog.designer.cs5.12 Ko31/10/2018 18:33:14-refusé-
Afficher le fichier .cs|.csExceptionDialog.Designer.cs6.2 Ko31/10/2018 18:33:14-refusé-
Afficher le fichier .resx|.resxCustomOpenResultFileDialog.resx6.06 Ko31/10/2018 18:33:14-refusé-
Afficher le fichier .resx|.resxVersionForm.resx42.91 Ko31/10/2018 18:33:15-refusé-
Afficher le fichier .cs|.csAboutBrolDevlDialog.Designer.cs2.24 Ko31/10/2018 18:33:13-refusé-
Afficher le fichier .resx|.resxDGVLayoutOptionsDialog.resx5.68 Ko31/10/2018 18:33:14-refusé-
Afficher le fichier .resx|.resxInfobrolForm.resx40.95 Ko31/10/2018 18:33:14-refusé-
Afficher le fichier .cs|.csTrackFloatParameterDialog.cs2.41 Ko31/10/2018 18:33:15-refusé-
Afficher le fichier .resx|.resxUpdateDialog.resx5.68 Ko31/10/2018 18:33:15-refusé-
Afficher le fichier .cs|.csCustomOpenResultFileDialog.Designer.cs7.44 Ko31/10/2018 18:33:14-refusé-
Afficher le fichier .cs|.csCriticalExceptionDialog.Designer.cs8.88 Ko31/10/2018 18:33:13-refusé-
Afficher le fichier .cs|.csTrackIntParameterDialog.Designer.cs8.02 Ko31/10/2018 18:33:15-refusé-
Afficher le fichier .cs|.csDGVLayoutOptionsDialog.cs1.05 Ko31/10/2018 18:33:14-refusé-
Afficher le fichier .cs|.csUpdateDialog.Designer.cs2.02 Ko31/10/2018 18:33:15-refusé-
Afficher le fichier .cs|.csUpdateDialog.cs360 octets31/10/2018 18:33:15-refusé-
Afficher le fichier .cs|.csAboutBrolDevlDialog.cs230 octets31/10/2018 18:33:13-refusé-
Afficher le fichier .cs|.csCustomOpenResultFileDialog.cs4.84 Ko31/10/2018 18:33:13-refusé-
Afficher le fichier .resx|.resxExceptionDialog.resx5.68 Ko31/10/2018 18:33:14-refusé-
Afficher le fichier .resx|.resxHSLDialog.resx5.68 Ko31/10/2018 18:33:14-refusé-
Afficher le fichier .resx|.resxAboutBrolDevlDialog.resx5.68 Ko31/10/2018 18:33:13-refusé-
Afficher le fichier .cs|.csTrackFloatParameterDialog.Designer.cs6.31 Ko31/10/2018 18:33:15-refusé-
Afficher le fichier .resx|.resxResizeDialog.resx5.68 Ko31/10/2018 18:33:14-refusé-
Afficher le fichier .cs|.csHSLDialog.Designer.cs14.28 Ko31/10/2018 18:33:14-refusé-
Afficher le fichier .cs|.csResizeDialog.cs1.09 Ko31/10/2018 18:33:14-refusé-
Afficher le fichier .cs|.csCriticalExceptionDialog.cs1.87 Ko31/10/2018 18:33:13-refusé-
Afficher le fichier .cs|.csVersionForm.cs1.16 Ko31/10/2018 18:33:15-refusé-
Afficher le fichier .resx|.resxTrackIntParameterDialog.resx5.68 Ko31/10/2018 18:33:15-refusé-
Afficher le fichier .cs|.csInfobrolForm.cs198 octets31/10/2018 18:33:14-refusé-
Afficher le fichier .cs|.csInfobrolForm.Designer.cs2.45 Ko31/10/2018 18:33:14-refusé-
Afficher le fichier .cs|.csResizeDialog.Designer.cs5.3 Ko31/10/2018 18:33:14-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.

Document créé le 16/10/2009, dernière modification le 26/10/2018
Source du document imprimé : https://www.gaudry.be/cs-broldev-source-rf-view/dialogs//ExceptionDialog.Designer.cs.html

L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.