WarcraftPlayer
MIS
Is it possible to print the image in a PictureBox?
/cry
/help
LVL 60 ROGUE
/cry
/help
LVL 60 ROGUE
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
private void button1_Click(Object sender, EventArgs e)
{
PrintDocument tmpDoc = new PrintDocument();
tmpDoc.PrintPage += new PrintPageEventHandler(Tmpdoc_Print);
PrintPreviewDialog tmpPpd = new PrintPreviewDialog();
tmpPpd.Document=tmpDoc;
tmpPpd.ShowDialog();
}
private void Tmpdoc_Print( Object sender, PrintPageEventArgs e)
{
e.Graphics.DrawImage(pictureBox1.Image, 0, 0);
}