我创建了Windows应用程序来生成条形码。
我正在生成多个条形码图像并将它们保存在一个文件夹中,现在我想在图片框中显示所有这些图像并打印它们帮助..
答案 0 :(得分:0)
动态创建图片框并添加到表单。
参见示例代码:
private void LoadPic()
{
string path = @"Path here";
PictureBox pic;
FlowLayoutPanel panel;
int x = 0;
int y = 0;
foreach ( string item in Directory.GetFiles ( path ) )
{
pic = new PictureBox ();
panel = new FlowLayoutPanel ();
panel.Location = new Point ( x, y );
pic.Size = new System.Drawing.Size (100, 100 );
pic.ImageLocation = item;
panel.Controls.Add ( pic );
pic.Click +=pic_Click;
panel1.Controls.Add ( panel );
y = y + 100;
}
}