/* * Copyright 2018 faddenSoft * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ namespace SourceGen.AppForms { partial class ProjectLoadIssues { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.cancelButton = new System.Windows.Forms.Button(); this.okButton = new System.Windows.Forms.Button(); this.labelSomeIssues = new System.Windows.Forms.Label(); this.messageTextBox = new System.Windows.Forms.TextBox(); this.invalidDiscardLabel = new System.Windows.Forms.Label(); this.SuspendLayout(); // // cancelButton // this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.cancelButton.Location = new System.Drawing.Point(469, 184); this.cancelButton.Name = "cancelButton"; this.cancelButton.Size = new System.Drawing.Size(75, 23); this.cancelButton.TabIndex = 1; this.cancelButton.Text = "Cancel"; this.cancelButton.UseVisualStyleBackColor = true; // // okButton // this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK; this.okButton.Location = new System.Drawing.Point(388, 184); this.okButton.Name = "okButton"; this.okButton.Size = new System.Drawing.Size(75, 23); this.okButton.TabIndex = 0; this.okButton.Text = "Continue"; this.okButton.UseVisualStyleBackColor = true; // // labelSomeIssues // this.labelSomeIssues.AutoSize = true; this.labelSomeIssues.Location = new System.Drawing.Point(13, 13); this.labelSomeIssues.Name = "labelSomeIssues"; this.labelSomeIssues.Size = new System.Drawing.Size(257, 13); this.labelSomeIssues.TabIndex = 2; this.labelSomeIssues.Text = "Problems were detected while loading the project file:"; // // messageTextBox // this.messageTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.messageTextBox.BackColor = System.Drawing.SystemColors.Window; this.messageTextBox.Location = new System.Drawing.Point(12, 37); this.messageTextBox.Multiline = true; this.messageTextBox.Name = "messageTextBox"; this.messageTextBox.ReadOnly = true; this.messageTextBox.Size = new System.Drawing.Size(533, 113); this.messageTextBox.TabIndex = 3; // // invalidDiscardLabel // this.invalidDiscardLabel.AutoSize = true; this.invalidDiscardLabel.ForeColor = System.Drawing.Color.Red; this.invalidDiscardLabel.Location = new System.Drawing.Point(13, 158); this.invalidDiscardLabel.Name = "invalidDiscardLabel"; this.invalidDiscardLabel.Size = new System.Drawing.Size(301, 13); this.invalidDiscardLabel.TabIndex = 4; this.invalidDiscardLabel.Text = "Invalid data items will be discarded when you save the project."; // // ProjectLoadIssues // this.AcceptButton = this.okButton; this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.CancelButton = this.cancelButton; this.ClientSize = new System.Drawing.Size(556, 219); this.Controls.Add(this.invalidDiscardLabel); this.Controls.Add(this.messageTextBox); this.Controls.Add(this.labelSomeIssues); this.Controls.Add(this.okButton); this.Controls.Add(this.cancelButton); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "ProjectLoadIssues"; this.ShowInTaskbar = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "Project Load Issues"; this.Load += new System.EventHandler(this.ProjectLoadIssues_Load); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Button cancelButton; private System.Windows.Forms.Button okButton; private System.Windows.Forms.Label labelSomeIssues; private System.Windows.Forms.TextBox messageTextBox; private System.Windows.Forms.Label invalidDiscardLabel; } }