private void SendingHide() { if (InvokeRequired) { Invoke(new Action(SendingHide)); return; } SenderName.Text = ""; SenderEmailAddress.Text = ""; SenderRequest.Text = ""; Sending.Hide(); SendSupportRequest.Enabled = true; MessageBox.Show("Your request was sent!", "SUCCESS!", MessageBoxButtons.OK, MessageBoxIcon.Information); }
private void Support_Load(object sender, EventArgs e) { Sending.Hide(); }