使用条形码图片 示例 条形码的值是 "1234567890" 描述 C1BarCode 提供了根据一个特殊的字符串值编码的条形码图像。 用户可以直接通过下面的代码使用的条码图像: if (!IsPostBack) { C1BarCode barCode = new C1BarCode(); barCode.Text = "1234567890"; barCode.CodeType = WijmoCodeTypeEnum.Code128; this.Image1.ImageUrl = barCode.ImageUrl; } 文档