要獲取用戶在ListBox中選定的值,可以通過SelectedIndex屬性來獲取選定項的索引,并通過Items集合來獲取選定項的值。示例代碼如下:
// 獲取ListBox中選定項的索引
int selectedIndex = listBox1.SelectedIndex;
// 獲取選定項的值
string selectedValue = listBox1.Items[selectedIndex].ToString();
// 輸出選定項的值
Console.WriteLine(selectedValue);
在上面的代碼中,假設listBox1是一個ListBox控件,通過SelectedIndex屬性獲取用戶選定項的索引,然后通過Items集合獲取該索引對應的項的值,最后輸出選定項的值。