CnC_Remastered_Collection

Command and Conquer: Red Alert
Log | Files | Refs | README | LICENSE

ErrorMessageBox.Designer.cs (7615B)


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