二輪衝刺第四天
阿新 • • 發佈:2018-12-09
今天我的任務分配如下:
劉任務編寫生成條形碼的程式碼,
崔任務執行除錯。
編寫的程式碼是生成條形碼的部分程式碼
程式碼如下:
//生成條形碼-生成
private void button1_Click(object sender, EventArgs e)
{
//設定條形碼規格
EncodingOptions encodeOption = new EncodingOptions();
//設定寬和高
encodeOption.Height = 130;
encodeOption.Width = 240;
BarcodeWriter wr = new BarcodeWriter();
wr.Options = encodeOption;
//條形碼:根據自己的需要選擇條形碼格式
wr.Format = BarcodeFormat.EAN_13;
//生成條形碼
Bitmap image = wr.Write(textBox1.Text);
//顯示
pictureBox1.Image = image;
}
今天除錯了一下編寫的程式碼,可以執行,還是有bug,準備剩下兩天進行對bug的修復。