Inheritance: System.Windows.Forms.Form
コード例 #1
0
        private void buttonCustomCookies_Click(object sender, EventArgs e)
        {
            frmCustomCookies dialog = new frmCustomCookies();

            if (dialog.ShowDialog() == DialogResult.OK)
            {
                this.CookieCol = dialog.CookieCol;
            }
        }
コード例 #2
0
 private void buttonCustomCookies_Click(object sender, EventArgs e)
 {
     frmCustomCookies dialog = new frmCustomCookies();
     if (dialog.ShowDialog() == DialogResult.OK)
         this.CookieCol = dialog.CookieCol;
 }