gpt4 book ai didi

c# - Windows 窗体 C# 中的打印面板

转载 作者:行者123 更新时间:2023-11-30 13:20:09 24 4
gpt4 key购买 nike

<分区>

我这里有个情况。我需要在 Visual Studio 2010 中使用 C# 在 Windows 窗体中创建一个员工卡结构。该结构可能包含带有白色背景的标签和图片框。我创建它没有问题,但我还在这个表单上提供了一个名为“打印”的按钮,以便用户可以打印该卡。我用谷歌搜索但没有找到具体的东西。请帮帮我。

namespace Employee_Card_Manager
{
public partial class Card : Form
{
public Card(String a, String b, String c, String d, String e, String f, String g, String h, String i)
{
InitializeComponent();
this.label2.Text = a;
this.label9.Text = b;
this.label10.Text = c;
this.label11.Text = d;
this.label12.Text = e;
this.label13.Text = f;
this.label14.Text = g;
this.label16.Text = h;
this.pictureBox1.Image = Image.FromFile(i);
Image myimg = Code128Rendering.MakeBarcodeImage(h, 2, true);
this.pictureBox2.Image = myimg;
}
private void button1_Click(object sender, EventArgs e)
{
//Print Card Code
}
}
}

卡片模板如下:

Employee Card Structure

我已将所有卡片结构放在面板控件上并将面板背景设置为白色。你能填写打印这张卡片的代码吗?谢谢

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com