示例#1
0
 /// <summary>
 /// Opens the FillorCancel form as a dialog box.
 /// </summary>
 private void btnGoToFillOrCancel_Click(object sender, EventArgs e)
 {
     using (Form frm = new FillOrCancel())
     {
         frm.ShowDialog();
     }
 }
        /// <summary>
        /// Opens the FillorCancel form as a dialog box.
        /// </summary>
        private void BtnGoToFillOrCancel_Click(object sender, EventArgs e)
        {
            Form frm = new FillOrCancel();

            frm.ShowDialog();
        }