12345678910111213141516171819202122232425262728293031323334 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows.Forms;
- namespace WindowsFormsPrintDialog
- {
- public partial class Form1 : Form
- {
- public Form1()
- {
- InitializeComponent();
- }
- private void button1_Click(object sender, EventArgs e)
- {
- printDialog1.Document = printDocument1;
-
- printDialog1.AllowPrintToFile = true;
-
- printDialog1.AllowCurrentPage = true;
-
- printDialog1.AllowSelection = true;
-
- printDialog1.AllowSomePages = true;
- printDialog1.ShowDialog();
- }
- }
- }
|