Inheritance: System.Windows.Forms.Form
Ejemplo n.º 1
0
        private void toolStripButtonCookies_Click(object sender, EventArgs e)
        {
            frmCustomCookies frmCookie = new frmCustomCookies();

            if (frmCookie.ShowDialog() == DialogResult.OK)
            {
                this.cookieCollection = frmCookie.CookieCol;
            }
        }
 private void toolStripButtonCookies_Click(object sender, EventArgs e)
 {
     frmCustomCookies frmCookie = new frmCustomCookies();
     if (frmCookie.ShowDialog() == DialogResult.OK)
         this.cookieCollection = frmCookie.CookieCol;
 }