コード例 #1
0
ファイル: Support.cs プロジェクト: futureskyprojects/NIL
 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);
 }
コード例 #2
0
ファイル: Support.cs プロジェクト: futureskyprojects/NIL
 private void Support_Load(object sender, EventArgs e)
 {
     Sending.Hide();
 }