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["製品名"].Index = 1;

回答 : これは 2010 年第 1 四半期以前の旧バージョンですが、バージョン Q2 から現在まで Coulmn を注文するには Move Function を使用します。

radGridViewContainerStock.Columns.Move(radGridViewContainerStock.Columns["製品名"].Index , 1);

2-セルエレメント

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

使用できるスタイルの問題に移動します。

e.CellElement.RowInfo.Cells["不一致"].Style.ForeColor = ...

ありがとうございました。

于 2012-10-20T08:05:15.470 に答える