私は ItemCheckEventArgs を使用しており、そこからインデックス値を取得できますが、この値から、チェックされたテキストの内容を調べる方法がわかりません。
17014 次
4 に答える
5
トリックを実行する必要のある最小限のコードを次に示します。
public void CheckedListBox1_ItemCheck(object sender, ItemCheckEventArgs e)
{
var checkedListBox = (CheckedListBox)sender;
var checkedItemText = checkedListBox.Items[e.Index].ToString();
}
于 2010-11-17T15:52:56.110 に答える
3
ItemCheckEventArgs eを使用するItemCheckイベントハンドラーで、対応するオブジェクトを取得できます
checkedListBox1.Items[e.Index]
于 2010-11-17T15:55:07.870 に答える
1
CheckedListBox
クラスにはプロパティがありCheckedItems
ます。
private void WhatIsChecked_Click(object sender, System.EventArgs e) {
// Display in a message box all the items that are checked.
// First show the index and check state of all selected items.
foreach(int indexChecked in checkedListBox1.CheckedIndices) {
// The indexChecked variable contains the index of the item.
MessageBox.Show("Index#: " + indexChecked.ToString() + ", is checked. Checked state is:" + checkedListBox1.GetItemCheckState(indexChecked).ToString() + ".");
}
// Next show the object title and check state for each item selected.
foreach(object itemChecked in checkedListBox1.CheckedItems) {
// Use the IndexOf method to get the index of an item.
MessageBox.Show("Item with title: \"" + itemChecked.ToString() +
"\", is checked. Checked state is: " + checkedListBox1.GetItemCheckState(checkedListBox1.Items.IndexOf(itemChecked)).ToString() + ".");
}
}
于 2010-11-17T15:55:34.127 に答える
0
SelectedIndexChanged
イベント内に、次のコードを配置します
string text = (sender as CheckedListBox).SelectedItem.ToString();
于 2010-11-17T15:53:05.973 に答える