ListBox中Item项的位置的变动(转天轰穿的代码)

本文介绍了一种在ASP.NET中使用ListBox控件时,通过按钮实现列表项向上或向下移动的方法。具体实现依赖于按钮的CommandName属性,分别对应'up'和'down',并提供了完整的代码示例。
摘要由CSDN通过智能技术生成
1.JPG
向上移一位按钮的commandName为up  向下移一位按钮的commandName为down
代码如下:
protected void Button2_Click(object sender, EventArgs e)
    {//ListBox中Item项的位置的变动
        if (((Button)sender).CommandName == "up" && ListBox3.SelectedIndex > 0 || ((Button)sender).CommandName == "down" && ListBox3.SelectedIndex < ListBox3.Items.Count - 1)
        {
            int index;
            if (((Button)sender).CommandName == "up")
            { index = -1; }
            else
            {
                index = 1;
            }
            ListItem lt = new ListItem(ListBox3.SelectedItem.Text,ListBox3.SelectedValue);
            ListBox3.Items[ListBox3.SelectedIndex].Text = ListBox3.Items[ListBox3.SelectedIndex + index].Text;
            ListBox3.Items[ListBox3.SelectedIndex].Value = ListBox3.Items[ListBox3.SelectedIndex + index].Value;
            ListBox3.Items[ListBox3.SelectedIndex + index].Text = lt.Text;
            ListBox3.Items[ListBox3.SelectedIndex + index].Value = lt.Value;
            ListBox3.SelectedIndex = ListBox3.SelectedIndex + index;

        }
    }

转载于:https://www.cnblogs.com/miaochaosong/archive/2007/04/03/697813.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值