ErrorMessageBox.Designer.cs 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. //
  2. // Copyright 2020 Electronic Arts Inc.
  3. //
  4. // The Command & Conquer Map Editor and corresponding source code is free
  5. // software: you can redistribute it and/or modify it under the terms of
  6. // the GNU General Public License as published by the Free Software Foundation,
  7. // either version 3 of the License, or (at your option) any later version.
  8. // The Command & Conquer Map Editor and corresponding source code is distributed
  9. // in the hope that it will be useful, but with permitted additional restrictions
  10. // under Section 7 of the GPL. See the GNU General Public License in LICENSE.TXT
  11. // distributed with this program. You should have received a copy of the
  12. // GNU General Public License along with permitted additional restrictions
  13. // with this program. If not, see https://github.com/electronicarts/CnC_Remastered_Collection
  14. namespace MobiusEditor.Dialogs
  15. {
  16. partial class ErrorMessageBox
  17. {
  18. /// <summary>
  19. /// Required designer variable.
  20. /// </summary>
  21. private System.ComponentModel.IContainer components = null;
  22. /// <summary>
  23. /// Clean up any resources being used.
  24. /// </summary>
  25. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  26. protected override void Dispose(bool disposing)
  27. {
  28. if (disposing && (components != null))
  29. {
  30. components.Dispose();
  31. }
  32. base.Dispose(disposing);
  33. }
  34. #region Windows Form Designer generated code
  35. /// <summary>
  36. /// Required method for Designer support - do not modify
  37. /// the contents of this method with the code editor.
  38. /// </summary>
  39. private void InitializeComponent()
  40. {
  41. this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
  42. this.lblMessage = new System.Windows.Forms.Label();
  43. this.txtErrors = new System.Windows.Forms.TextBox();
  44. this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
  45. this.btnOK = new System.Windows.Forms.Button();
  46. this.btnCopy = new System.Windows.Forms.Button();
  47. this.tableLayoutPanel1.SuspendLayout();
  48. this.flowLayoutPanel1.SuspendLayout();
  49. this.SuspendLayout();
  50. //
  51. // tableLayoutPanel1
  52. //
  53. this.tableLayoutPanel1.ColumnCount = 1;
  54. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
  55. this.tableLayoutPanel1.Controls.Add(this.lblMessage, 0, 0);
  56. this.tableLayoutPanel1.Controls.Add(this.txtErrors, 0, 1);
  57. this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel1, 0, 2);
  58. this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
  59. this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
  60. this.tableLayoutPanel1.Name = "tableLayoutPanel1";
  61. this.tableLayoutPanel1.RowCount = 3;
  62. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
  63. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
  64. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
  65. this.tableLayoutPanel1.Size = new System.Drawing.Size(447, 285);
  66. this.tableLayoutPanel1.TabIndex = 0;
  67. //
  68. // lblMessage
  69. //
  70. this.lblMessage.AutoSize = true;
  71. this.lblMessage.Location = new System.Drawing.Point(3, 0);
  72. this.lblMessage.Name = "lblMessage";
  73. this.lblMessage.Size = new System.Drawing.Size(191, 13);
  74. this.lblMessage.TabIndex = 1;
  75. this.lblMessage.Text = "The following errors were encountered:";
  76. //
  77. // txtErrors
  78. //
  79. this.txtErrors.Dock = System.Windows.Forms.DockStyle.Fill;
  80. this.txtErrors.Location = new System.Drawing.Point(3, 16);
  81. this.txtErrors.Multiline = true;
  82. this.txtErrors.Name = "txtErrors";
  83. this.txtErrors.ReadOnly = true;
  84. this.txtErrors.ScrollBars = System.Windows.Forms.ScrollBars.Both;
  85. this.txtErrors.Size = new System.Drawing.Size(441, 231);
  86. this.txtErrors.TabIndex = 0;
  87. this.txtErrors.WordWrap = false;
  88. //
  89. // flowLayoutPanel1
  90. //
  91. this.flowLayoutPanel1.AutoSize = true;
  92. this.flowLayoutPanel1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
  93. this.flowLayoutPanel1.Controls.Add(this.btnOK);
  94. this.flowLayoutPanel1.Controls.Add(this.btnCopy);
  95. this.flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
  96. this.flowLayoutPanel1.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
  97. this.flowLayoutPanel1.Location = new System.Drawing.Point(3, 253);
  98. this.flowLayoutPanel1.Name = "flowLayoutPanel1";
  99. this.flowLayoutPanel1.Size = new System.Drawing.Size(441, 29);
  100. this.flowLayoutPanel1.TabIndex = 1;
  101. //
  102. // btnOK
  103. //
  104. this.btnOK.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  105. this.btnOK.Location = new System.Drawing.Point(363, 3);
  106. this.btnOK.Name = "btnOK";
  107. this.btnOK.Size = new System.Drawing.Size(75, 23);
  108. this.btnOK.TabIndex = 0;
  109. this.btnOK.Text = "&OK";
  110. this.btnOK.UseVisualStyleBackColor = true;
  111. //
  112. // btnCopy
  113. //
  114. this.btnCopy.Location = new System.Drawing.Point(246, 3);
  115. this.btnCopy.Name = "btnCopy";
  116. this.btnCopy.Size = new System.Drawing.Size(111, 23);
  117. this.btnCopy.TabIndex = 1;
  118. this.btnCopy.Text = "&Copy to Clipboard";
  119. this.btnCopy.UseVisualStyleBackColor = true;
  120. this.btnCopy.Click += new System.EventHandler(this.btnCopy_Click);
  121. //
  122. // ErrorMessageBox
  123. //
  124. this.AcceptButton = this.btnOK;
  125. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  126. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  127. this.CancelButton = this.btnOK;
  128. this.ClientSize = new System.Drawing.Size(447, 285);
  129. this.Controls.Add(this.tableLayoutPanel1);
  130. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
  131. this.MaximizeBox = false;
  132. this.MinimizeBox = false;
  133. this.Name = "ErrorMessageBox";
  134. this.ShowInTaskbar = false;
  135. this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
  136. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  137. this.Text = "Error Report";
  138. this.tableLayoutPanel1.ResumeLayout(false);
  139. this.tableLayoutPanel1.PerformLayout();
  140. this.flowLayoutPanel1.ResumeLayout(false);
  141. this.ResumeLayout(false);
  142. }
  143. #endregion
  144. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
  145. private System.Windows.Forms.TextBox txtErrors;
  146. private System.Windows.Forms.Label lblMessage;
  147. private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1;
  148. private System.Windows.Forms.Button btnOK;
  149. private System.Windows.Forms.Button btnCopy;
  150. }
  151. }