Tag: 条形码图片

如何将List 的值在将其编码为c#中的条形码后添加到List 中

我有两个List一个是字符串,另一个是PictureBox类型。 我想取List类型字符串的值,然后将其转换为条形码,然后将其保存到PictureBox类型的List中。 我现在这样做: List PictureBoxList = new List(); List SerialNumberList = new List(); int SerialNumberStart = 0; for(int i = 0; i < 10 ; i++) { SerialNumberStart++; SerialNumberList.Add("S" + SerialNumberStart); } private void PrintButton_Click(object sender, EventArgs e) { for(int j =0 ; j < SerialNumberList.Count ; j++) { BarcodeLib.TYPE barcodetype1 = BarcodeLib.TYPE.CODE39; BarcodeLib.Barcode bar1 […]