ErrorMessageDialog.Designer.cs 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. namespace qdr.app.bundleboiler.ui.Dialogs
  2. {
  3. partial class ErrorMessageDialog
  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. panel1 = new Panel();
  29. lCaption = new Label();
  30. tbDetail = new TextBox();
  31. butClose = new Button();
  32. butCopyClipboard = new Button();
  33. SuspendLayout();
  34. //
  35. // panel1
  36. //
  37. panel1.BackgroundImage = Properties.Resources.error_icon_25243;
  38. panel1.BackgroundImageLayout = ImageLayout.Stretch;
  39. panel1.Location = new Point(12, 12);
  40. panel1.Name = "panel1";
  41. panel1.Size = new Size(101, 100);
  42. panel1.TabIndex = 0;
  43. //
  44. // lCaption
  45. //
  46. lCaption.Location = new Point(119, 12);
  47. lCaption.Name = "lCaption";
  48. lCaption.Size = new Size(415, 44);
  49. lCaption.TabIndex = 1;
  50. lCaption.Text = "label1";
  51. //
  52. // tbDetail
  53. //
  54. tbDetail.Location = new Point(119, 115);
  55. tbDetail.Multiline = true;
  56. tbDetail.Name = "tbDetail";
  57. tbDetail.ReadOnly = true;
  58. tbDetail.ScrollBars = ScrollBars.Vertical;
  59. tbDetail.Size = new Size(423, 136);
  60. tbDetail.TabIndex = 2;
  61. //
  62. // butClose
  63. //
  64. butClose.Location = new Point(467, 257);
  65. butClose.Name = "butClose";
  66. butClose.Size = new Size(75, 35);
  67. butClose.TabIndex = 3;
  68. butClose.Text = "Close";
  69. butClose.UseVisualStyleBackColor = true;
  70. butClose.Click += butClose_Click;
  71. //
  72. // butCopyClipboard
  73. //
  74. butCopyClipboard.BackgroundImageLayout = ImageLayout.Zoom;
  75. butCopyClipboard.Image = Properties.Resources.copy2clipboard;
  76. butCopyClipboard.ImageAlign = ContentAlignment.MiddleLeft;
  77. butCopyClipboard.Location = new Point(515, 89);
  78. butCopyClipboard.Name = "butCopyClipboard";
  79. butCopyClipboard.Size = new Size(27, 23);
  80. butCopyClipboard.TabIndex = 4;
  81. butCopyClipboard.UseVisualStyleBackColor = true;
  82. butCopyClipboard.Click += butCopyClipboard_Click;
  83. //
  84. // ErrorMessageDialog
  85. //
  86. AutoScaleDimensions = new SizeF(96F, 96F);
  87. AutoScaleMode = AutoScaleMode.Dpi;
  88. AutoSize = true;
  89. ClientSize = new Size(567, 322);
  90. ControlBox = false;
  91. Controls.Add(butCopyClipboard);
  92. Controls.Add(butClose);
  93. Controls.Add(tbDetail);
  94. Controls.Add(lCaption);
  95. Controls.Add(panel1);
  96. FormBorderStyle = FormBorderStyle.FixedDialog;
  97. Name = "ErrorMessageDialog";
  98. Text = "Error";
  99. ResumeLayout(false);
  100. PerformLayout();
  101. }
  102. #endregion
  103. private Panel panel1;
  104. private Label lCaption;
  105. private TextBox tbDetail;
  106. private Button butClose;
  107. private Button butCopyClipboard;
  108. }
  109. }