/*********************************************************************
*
* Log Window dialog for MPFS21
*
*********************************************************************
* FileName: LogWindow.cs
* Dependencies: Microsoft .NET Framework 2.0
* Processor: x86
* Complier: Microsoft Visual C# 2008 Express Edition
* Company: Microchip Technology, Inc.
*
* Software License Agreement
*
* This software is owned by Microchip Technology Inc. ("Microchip")
* and is supplied to you for use exclusively as described in the
* associated software agreement. This software is protected by
* software and other intellectual property laws. Any use in
* violation of the software license may subject the user to criminal
* sanctions as well as civil liability. Copyright 2008 Microchip
* Technology Inc. All rights reserved.
*
*
* THE SOFTWARE AND DOCUMENTATION ARE PROVIDED "AS IS" WITHOUT
* WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT
* LIMITATION, ANY WARRANTY OF MERCHANTABILITY, FITNESS FOR A
* PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL
* MICROCHIP BE LIABLE FOR ANY INCIDENTAL, SPECIAL, INDIRECT OR
* CONSEQUENTIAL DAMAGES, LOST PROFITS OR LOST DATA, COST OF
* PROCUREMENT OF SUBSTITUTE GOODS, TECHNOLOGY OR SERVICES, ANY CLAIMS
* BY THIRD PARTIES (INCLUDING BUT NOT LIMITED TO ANY DEFENSE
* THEREOF), ANY CLAIMS FOR INDEMNITY OR CONTRIBUTION, OR OTHER
* SIMILAR COSTS, WHETHER ASSERTED ON THE BASIS OF CONTRACT, TORT
* (INCLUDING NEGLIGENCE), BREACH OF WARRANTY, OR OTHERWISE.
*
*
* Author Date Comment
*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* Elliott Wood 4/17/2008 Original
********************************************************************/
namespace MPFS21
{
partial class LogWindow
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.txtLogWindow = new System.Windows.Forms.TextBox();
this.btnOK = new System.Windows.Forms.Button();
this.iconBox = new System.Windows.Forms.PictureBox();
this.txtMessage = new System.Windows.Forms.TextBox();
((System.ComponentModel.ISupportInitialize)(this.iconBox)).BeginInit();
this.SuspendLayout();
//
// txtLogWindow
//
this.txtLogWindow.BackColor = System.Drawing.SystemColors.Window;
this.txtLogWindow.Location = new System.Drawing.Point(12, 55);
this.txtLogWindow.Margin = new System.Windows.Forms.Padding(3, 8, 3, 3);
this.txtLogWindow.Multiline = true;
this.txtLogWindow.Name = "txtLogWindow";
this.txtLogWindow.ReadOnly = true;
this.txtLogWindow.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.txtLogWindow.Size = new System.Drawing.Size(450, 179);
this.txtLogWindow.TabIndex = 0;
//
// btnOK
//
this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
this.btnOK.Location = new System.Drawing.Point(387, 240);
this.btnOK.Name = "btnOK";
this.btnOK.Size = new System.Drawing.Size(75, 23);
this.btnOK.TabIndex = 1;
this.btnOK.Text = "OK";
this.btnOK.UseVisualStyleBackColor = true;
//
// iconBox
//
this.iconBox.Location = new System.Drawing.Point(12, 12);
this.iconBox.Name = "iconBox";
this.iconBox.Size = new System.Drawing.Size(32, 32);
this.iconBox.TabIndex = 2;
this.iconBox.TabStop = false;
//
// txtMessage
//
this.txtMessage.BackColor = System.Drawing.SystemColors.Control;
this.txtMessage.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.txtMessage.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.txtMessage.Location = new System.Drawing.Point(55, 12);
this.txtMessage.Margin = new System.Windows.Forms.Padding(8, 3, 3, 3);
this.txtMessage.Multiline = true;
this.txtMessage.Name = "txtMessage";
this.txtMessage.Size = new System.Drawing.Size(407, 32);
this.txtMessage.TabIndex = 3;
//
// LogWindow
//
this.AcceptButton = this.btnOK;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(474, 275);
this.Controls.Add(this.txtMessage);
this.Controls.Add(this.iconBox);
this.Controls.Add(this.btnOK);
this.Controls.Add(this.txtLogWindow);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "LogWindow";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "MPFS Utility Log";
this.Load += new System.EventHandler(this.LogWindow_Load);
((System.ComponentModel.ISupportInitialize)(this.iconBox)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox txtLogWindow;
private System.Windows.Forms.Button btnOK;
private System.Windows.Forms.PictureBox iconBox;
private System.Windows.Forms.TextBox txtMessage;
}
} |