InviteMessageBox.Designer.cs (7390B)
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 InviteMessageBox 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.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel(); 46 this.flowLayoutPanel2 = new System.Windows.Forms.FlowLayoutPanel(); 47 this.btnOK = new System.Windows.Forms.Button(); 48 this.checkBoxDontShowThisAgain = new System.Windows.Forms.CheckBox(); 49 this.pictureBoxIcon = new System.Windows.Forms.PictureBox(); 50 this.label1 = new System.Windows.Forms.Label(); 51 this.flowLayoutPanel1.SuspendLayout(); 52 this.flowLayoutPanel2.SuspendLayout(); 53 ((System.ComponentModel.ISupportInitialize)(this.pictureBoxIcon)).BeginInit(); 54 this.SuspendLayout(); 55 // 56 // flowLayoutPanel1 57 // 58 this.flowLayoutPanel1.Controls.Add(this.flowLayoutPanel2); 59 this.flowLayoutPanel1.Controls.Add(this.btnOK); 60 this.flowLayoutPanel1.Controls.Add(this.checkBoxDontShowThisAgain); 61 this.flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill; 62 this.flowLayoutPanel1.FlowDirection = System.Windows.Forms.FlowDirection.TopDown; 63 this.flowLayoutPanel1.Location = new System.Drawing.Point(0, 0); 64 this.flowLayoutPanel1.Name = "flowLayoutPanel1"; 65 this.flowLayoutPanel1.Size = new System.Drawing.Size(425, 97); 66 this.flowLayoutPanel1.TabIndex = 0; 67 // 68 // flowLayoutPanel2 69 // 70 this.flowLayoutPanel2.AutoSize = true; 71 this.flowLayoutPanel2.Controls.Add(this.pictureBoxIcon); 72 this.flowLayoutPanel2.Controls.Add(this.label1); 73 this.flowLayoutPanel2.Location = new System.Drawing.Point(3, 3); 74 this.flowLayoutPanel2.Name = "flowLayoutPanel2"; 75 this.flowLayoutPanel2.Size = new System.Drawing.Size(419, 38); 76 this.flowLayoutPanel2.TabIndex = 0; 77 // 78 // btnOK 79 // 80 this.btnOK.Anchor = System.Windows.Forms.AnchorStyles.None; 81 this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK; 82 this.btnOK.Location = new System.Drawing.Point(175, 47); 83 this.btnOK.Name = "btnOK"; 84 this.btnOK.Size = new System.Drawing.Size(75, 23); 85 this.btnOK.TabIndex = 1; 86 this.btnOK.Text = "&OK"; 87 this.btnOK.UseVisualStyleBackColor = true; 88 // 89 // checkBoxDontShowThisAgain 90 // 91 this.checkBoxDontShowThisAgain.AutoSize = true; 92 this.flowLayoutPanel1.SetFlowBreak(this.checkBoxDontShowThisAgain, true); 93 this.checkBoxDontShowThisAgain.Location = new System.Drawing.Point(3, 76); 94 this.checkBoxDontShowThisAgain.Name = "checkBoxDontShowThisAgain"; 95 this.checkBoxDontShowThisAgain.Size = new System.Drawing.Size(127, 17); 96 this.checkBoxDontShowThisAgain.TabIndex = 2; 97 this.checkBoxDontShowThisAgain.Text = "Don\'t show this again"; 98 this.checkBoxDontShowThisAgain.UseVisualStyleBackColor = true; 99 // 100 // pictureBoxIcon 101 // 102 this.pictureBoxIcon.Location = new System.Drawing.Point(3, 3); 103 this.pictureBoxIcon.Name = "pictureBoxIcon"; 104 this.pictureBoxIcon.Size = new System.Drawing.Size(32, 32); 105 this.pictureBoxIcon.TabIndex = 0; 106 this.pictureBoxIcon.TabStop = false; 107 // 108 // label1 109 // 110 this.label1.Anchor = System.Windows.Forms.AnchorStyles.None; 111 this.label1.AutoSize = true; 112 this.label1.Location = new System.Drawing.Point(41, 12); 113 this.label1.Name = "label1"; 114 this.label1.Size = new System.Drawing.Size(375, 13); 115 this.label1.TabIndex = 1; 116 this.label1.Text = "To join a game session or accept game invites, please first exit the Map Editor."; 117 // 118 // CheckMessageBox 119 // 120 this.AcceptButton = this.btnOK; 121 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 122 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 123 this.CancelButton = this.btnOK; 124 this.ClientSize = new System.Drawing.Size(425, 97); 125 this.Controls.Add(this.flowLayoutPanel1); 126 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; 127 this.MaximizeBox = false; 128 this.MinimizeBox = false; 129 this.Name = "CheckMessageBox"; 130 this.ShowInTaskbar = false; 131 this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide; 132 this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; 133 this.Text = "Map Editor"; 134 this.Load += new System.EventHandler(this.InviteMessageBox_Load); 135 this.flowLayoutPanel1.ResumeLayout(false); 136 this.flowLayoutPanel1.PerformLayout(); 137 this.flowLayoutPanel2.ResumeLayout(false); 138 this.flowLayoutPanel2.PerformLayout(); 139 ((System.ComponentModel.ISupportInitialize)(this.pictureBoxIcon)).EndInit(); 140 this.ResumeLayout(false); 141 142 } 143 144 #endregion 145 146 private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1; 147 private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel2; 148 private System.Windows.Forms.Button btnOK; 149 private System.Windows.Forms.CheckBox checkBoxDontShowThisAgain; 150 private System.Windows.Forms.PictureBox pictureBoxIcon; 151 private System.Windows.Forms.Label label1; 152 } 153 }