永发信息网

C#编程listbox控件问题

答案:2  悬赏:70  手机版
解决时间 2021-07-29 15:49
  • 提问者网友:低吟詩仙的傷
  • 2021-07-28 15:16

listBox 控件,列出若干个条目,例如

张三

李四

王五

侯六

请问下,我如何实现王五这个条目 上移,和下移,烦请给代码提示,能给全最好,先谢谢您!

最佳答案
  • 五星知识达人网友:思契十里
  • 2021-07-28 16:28

上移代码:


int index = listBox1.SelectedIndex;
if (index != 0)
{
string str;
str = listBox1.Items[index].ToString();
listBox1.Items[index] = listBox1.Items[index - 1];
listBox1.Items[index - 1] = str;
listBox1.SelectedIndex = index - 1;
}




下移代码:


int index = listBox1.SelectedIndex;
int count = listBox1.Items.Count;
if (index != count -1 )
{
string str;
str = listBox1.Items[index].ToString();
listBox1.Items[index] = listBox1.Items[index + 1];
listBox1.Items[index + 1] = str;
listBox1.SelectedIndex = index + 1;
}

全部回答
  • 1楼网友:长青诗
  • 2021-07-28 17:40
11906090 你把你的代码给我 我给你改
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯