namespace tAC_Engine
{
partial class FatalErrorDialog
{
///
/// 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.lblMessage = new System.Windows.Forms.Label();
this.butOK = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// lblMessage
//
this.lblMessage.AutoSize = true;
this.lblMessage.Location = new System.Drawing.Point(12, 34);
this.lblMessage.Name = "lblMessage";
this.lblMessage.Size = new System.Drawing.Size(35, 13);
this.lblMessage.TabIndex = 0;
this.lblMessage.Text = "label1";
//
// butOK
//
this.butOK.Location = new System.Drawing.Point(15, 215);
this.butOK.Name = "butOK";
this.butOK.Size = new System.Drawing.Size(75, 23);
this.butOK.TabIndex = 1;
this.butOK.Text = "OK";
this.butOK.UseVisualStyleBackColor = true;
this.butOK.Click += new System.EventHandler(this.butOK_Click);
//
// FatalErrorDialog
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(520, 250);
this.ControlBox = false;
this.Controls.Add(this.butOK);
this.Controls.Add(this.lblMessage);
this.Name = "FatalErrorDialog";
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
this.Text = "Fatal Error";
this.Load += new System.EventHandler(this.FatalErrorDialog_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label lblMessage;
private System.Windows.Forms.Button butOK;
}
}