你好,我通过以下 Codes 得到正常显示,请参考下面代码进行校对。
如果仍然没有解决问题,请提供代码片段,以便于定位问题。
代码如下:
- //Set the DataSource
- DataTable tabTest = new System.Data.DataTable();
- DataColumn colTest=new System.Data.DataColumn("进度条",System.Type.GetType("System.Int32"));
- tabTest.Columns.Add(colTest);
- tabTest.Rows.Add(30);
- tabTest.Rows.Add(30);
- tabTest.Rows.Add(30);
- tabTest.Rows.Add(30);
- tabTest.Rows.Add(30);
- tabTest.Rows.Add(30);
- //Set the CellType
- this.fpSpread1.Sheets[0].DataSource = tabTest;
- FarPoint.Win.Spread.CellType.ProgressCellType processType = new FarPoint.Win.Spread.CellType.ProgressCellType();
- this.fpSpread1.Sheets[0].Columns[0].CellType = processType;
复制代码 运行截图如下: |