0

我有一个 vs 应用程序,我不知道使用的版本是什么,但我使用的是 2010 年第 2 季度。请帮助我找到版本或获取此错误的解决方案。

1- 索引是只读的。

radGridViewContainerStock.Columns["Product_Name"].Index = 1;

2 行信息没有 CellElement 属性和 VisualElement。

private void radGridViewContainerStock_ViewCellFormatting(object sender, CellFormattingEventArgs e)
 {
     e.CellElement.RowInfo.Cells["Discrepancy"].CellElement.ForeColor = radGridViewTripStock.Rows[e.CellElement.RowIndex].VisualElement.ForeColor;
}
4

1 回答 1

0

1- 索引是只读的。

radGridViewContainerStock.Columns["Product_Name"].Index = 1;

回答:这是在旧版本 Q1 2010 和更早版本上,但从版本 Q2 到现在订购 Coulmn 使用移动功能

radGridViewContainerStock.Columns.Move(radGridViewContainerStock.Columns["Product_Name"].Index , 1);

2-细胞元素

 e.CellElement.RowInfo.Cells["Discrepancy"].CellElement.ForeColor = radGridViewTripStock.Rows[e.CellElement.RowIndex].VisualElement.ForeColor;

它移动到我们可以使用的样式探针:

e.CellElement.RowInfo.Cells["Discrepancy"].Style.ForeColor = ...

谢谢你。

于 2012-10-20T08:05:15.470 回答