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(); } } }