Ejemplo n.º 1
0
        //Impression
        private void BT_Print_Click(object sender, EventArgs e)
        {
            var choice = MessageBox.Show("Voulez-vous lancer l'impression ?", "Confirmation Impression", MessageBoxButtons.YesNo, MessageBoxIcon.Question);

            if (choice == DialogResult.Yes)
            {
                WB_Pages.ShowPrintDialog();
            }
        }