リストにフィードしているDataGridViewがあります
DataGridViewは完全に入力されていますが、グリッド(任意の列)内でユーザーが入力した値を検索できるようにしたいと思います。
私は解決策に忍び込もうとしているのですが、DataGridView.Cells [X、Y]タイプのプロパティが見つかりません。
私はこれを試しました:
String searchVal = textBoxValueToFindInGrid.Text.Trim();
for (int i = 0; i < dataGridViewPlatypusElements.RowCount; i++)
{
for (int j = 0; j < dataGridViewPlatypusElements.ColumnCount; j++) {
if (dataGridViewPlatypusElements.Text.Contains(searchVal))
{
dataGridViewPlatypusElements.GoTo*(Cells[j,i]);
}
}
}
...しかし、もちろん、DataGridView.Textには有用なものは何も含まれていません。これは、Cells [X、Y]プロパティが必要な場所です。
- この場合、私はそれが有害であるとは考えません。