예제 #1
0
 private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
 {
     if (TheLegalDialog == null || TheLegalDialog.IsDisposed)
     {
         TheLegalDialog = new LegalNoticesDialog();
         TheLegalDialog.Show(this);
     }
     else
     {
         TheLegalDialog.BringToFront();
         TheLegalDialog.Focus();
     }
 }
예제 #2
0
 private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
 {
     if (TheLegalDialog == null || TheLegalDialog.IsDisposed)
     {
         TheLegalDialog = new LegalNoticesDialog();
         TheLegalDialog.Show(this);
     }
     else
     {
         TheLegalDialog.BringToFront();
         TheLegalDialog.Focus();
     }
 }
예제 #3
0
 private void OkButton_Click(object sender, EventArgs e)
 {
     Close();
     TheLegalDialog = null;
 }
예제 #4
0
 private void OkButton_Click(object sender, EventArgs e)
 {
     Close();
     TheLegalDialog = null;
 }