qtc-net-client/qtc-net-client-2/Forms/ConnectionClosed.Designer.cs
2025-07-15 14:04:46 -07:00

95 lines
3.2 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();
SuspendLayout();
//
// lblHead
//
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?";
lblHead.TextAlign = ContentAlignment.MiddleCenter;
//
// 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;
//
// ConnectionClosed
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
BackColor = Color.DodgerBlue;
ClientSize = new Size(463, 65);
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 = "ConnectionClosed";
StartPosition = FormStartPosition.CenterScreen;
Text = "QtC.NET Client - Connection Lost";
ResumeLayout(false);
}
#endregion
private Label lblHead;
private Button btnReconnect;
private Button btnQuit;
}
}