おはよう! Pictureboxをボタンとして使用してpngファイルを印刷しようとしていました。 しかし、印刷できないようです。手伝っていただけませんか?またはあなたはすべてについてちょうどやっている私にこれは単純なものですが、簡単には欠場するC#VS 2010しかし、pngファイルを印刷すると印刷されないようです。
private void pictureBox2_Click(object sender, EventArgs e)
{
using (PrintDocument pd = new PrintDocument())
{
using (PrintDialog printDialog = new PrintDialog())
{
if (printDialog.ShowDialog() == DialogResult.Yes)
{
pd.PrintPage += new PrintPageEventHandler(pd_PrintPage);
pd.Print();
}
}
}
}
private void pd_PrintPage(object sender, System.Drawing.Printing.PrintPageEventArgs e)
{
System.Drawing.Image img = Image.FromFile(@"C:\Coke\res10.png");
e.Graphics.DrawImage(img, 0,0);
}
エラーは何ですか? – VVN
あなたの問題を解決しましたか? – TaW