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.
リストボックスの最後の項目を選択せずに編集しようとしています。リスト内の項目を選択できないためです (これが私のアプリケーションのデフォルトです)。Windows フォーム アプリケーションです。
通常は次のようにしますlistBox1.SelectedIndex = listBox1.Items[listBox1.SelectedIndex] + " -> This string is added"が、何も選択できないため、これは機能しません。
listBox1.SelectedIndex = listBox1.Items[listBox1.SelectedIndex] + " -> This string is added"
誰かがここで私を助けてくれますか?