qtc-net-client/qtc-net-client-2/Forms/ConnectionClosed.Designer.cs
2025-06-19 23:24:39 -07:00

110 lines
3.8 KiB
C#

namespace qtc_net_client_2.Forms
{
partial class ConnectionClosed
{
/// <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()
{
lblHead = new Label();
btnReconnect = new Button();
btnQuit = new Button();
lblReason = new Label();
SuspendLayout();
//
// lblHead
//
lblHead.AutoSize = true;
lblHead.Font = new Font("Segoe UI", 11F, FontStyle.Bold);
lblHead.Location = new Point(12, 9);
lblHead.Name = "lblHead";
lblHead.Size = new Size(444, 20);
lblHead.TabIndex = 0;
lblHead.Text = "Your Connection To The QtC.NET Server Was Lost. What Now?";
//
// btnReconnect
//
btnReconnect.ForeColor = Color.Black;
btnReconnect.Location = new Point(12, 33);
btnReconnect.Name = "btnReconnect";
btnReconnect.Size = new Size(75, 23);
btnReconnect.TabIndex = 1;
btnReconnect.Text = "Reconnect";
btnReconnect.UseVisualStyleBackColor = true;
btnReconnect.Click += btnReconnect_Click;
//
// btnQuit
//
btnQuit.ForeColor = Color.Black;
btnQuit.Location = new Point(381, 32);
btnQuit.Name = "btnQuit";
btnQuit.Size = new Size(75, 23);
btnQuit.TabIndex = 2;
btnQuit.Text = "Quit";
btnQuit.UseVisualStyleBackColor = true;
btnQuit.Click += btnQuit_Click;
//
// lblReason
//
lblReason.AutoSize = true;
lblReason.Font = new Font("Segoe UI", 5F, FontStyle.Bold);
lblReason.Location = new Point(88, 40);
lblReason.Name = "lblReason";
lblReason.Size = new Size(72, 10);
lblReason.TabIndex = 3;
lblReason.Text = "Reason: ${REASON}";
//
// frmConnectionClosed
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
BackColor = Color.DodgerBlue;
ClientSize = new Size(463, 65);
Controls.Add(lblReason);
Controls.Add(btnQuit);
Controls.Add(btnReconnect);
Controls.Add(lblHead);
Font = new Font("Segoe UI", 9F);
ForeColor = Color.White;
FormBorderStyle = FormBorderStyle.FixedDialog;
Margin = new Padding(4, 3, 4, 3);
MaximizeBox = false;
MinimizeBox = false;
Name = "frmConnectionClosed";
StartPosition = FormStartPosition.CenterScreen;
Text = "QtC.NET Client - Connection Lost";
Load += frmConnectionClosed_Load;
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label lblHead;
private Button btnReconnect;
private Button btnQuit;
private Label lblReason;
}
}