回复 1楼wangleiecho的帖子
可以通过下面的代码来实现:
- PictureBox pic = new PictureBox();
- FarPoint.Win.Spread.CellType.BarCodeCellType bar = new FarPoint.Win.Spread.CellType.BarCodeCellType();
- Image image = bar.CreateBitmap(fpSpread1.ActiveSheet.Cells[0, 0].Value);
- pic.Image = bar.CreateBitmap(fpSpread1.ActiveSheet.Cells[0, 0].Value);
复制代码 |