Telerik未知错误,未知版本

时间:2012-10-18 13:14:08

标签: c# winforms telerik telerik-grid

我有一个vs应用程序我不知道使用的版本是什么,但我使用的是2010年第二季度。 请帮我找一个版本或解决这个错误。

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;
}

1 个答案:

答案 0 :(得分:0)

1-索引是只读的。

  

radGridViewContainerStock.Columns [“Product_Name”]。Index = 1;

回答:  这是旧版本2010年第一季度及更早版本,但从版本Q2到现在 订购Coulmn使用移动功能

  

radGridViewContainerStock.Columns.Move(radGridViewContainerStock.Columns [“Product_Name”]。Index,1);

2- cellelement

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

它转移到我们可以使用的Style proberty:

  

e.CellElement.RowInfo.Cells [“Discrepancy”]。Style.ForeColor = ...

谢谢。