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

34 lines
773 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace qtc_net_client_2.Forms
{
public partial class ConnectionClosed : Form
{
public Label StatusLabel { get { return lblHead; } }
public ConnectionClosed()
{
InitializeComponent();
}
private void btnReconnect_Click(object sender, EventArgs e)
{
DialogResult = DialogResult.OK;
Close();
}
private void btnQuit_Click(object sender, EventArgs e)
{
DialogResult = DialogResult.Cancel;
Close();
}
}
}