|
分類:[C#]
2020/02/07(Fri) 15:39:10 編集(投稿者)
Windowsアプリケーションで開発しています。 ボタンClickのイベントにより ListViewで選択行のフォーカスを1行ずつ下に移動させています。
private void Button1_Click(object sender, EventArgs e) { int nextIndex = listView1.SelectedItems[0].Index + 1; listView1.Items[nextIndex].Selected = true; listView1.Items[nextIndex].Focused = true; listView1.Focus(); listView1.Select(); listView1.EnsureVisible(nextIndex); }
Listviewで選択している行の一番左の列に空欄があった場合にメッセージボックスを表示させたいです。 どうすればいいでしょうか?
|