Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ウィンドウ c# デスクトップ アプリケーション
DataRow objectの選択した行でを初期化したいDataGrdView。
DataRow object
DataGrdView
はいの場合、どのように可能ですか?
次のコードを書いていますが、コンパイルエラーが発生しています。
DataRow dr = (DataRow)DataGridView1.SelectedRows[0];
ありがとう
これを試して:
DataRow dr = (DataGridView1.SelectedRows[0].DataBoundItem as DataRowView).Row;
これを試して
DataRow dr = (dataGridView1.SelectedRows[0].DataBoundItem as DataRowView).Row;