编写一个包含两个 ListBox 控件的窗体应用程序
展开全部
#region 右添加
protected void ImageButton2_Click(object sender, ImageClickEventArgs e)
{
for (int i = 0; i < ListBox1.Items.Count; i++)
{
if (ListBox1.Items[i].Selected)
{
ListItem item = new ListItem();
item.Text = ListBox1.Items[i].Text;
item.Value = ListBox1.Items[i].Value;
ListBox2.Items.Add(item);
}
}
while (ListBox1.SelectedItem != null)
{
for (int j = 0; j < ListBox1.Items.Count; j++)
{
if (ListBox1.Items[j].Selected)
{
ListBox1.Items.Remove(ListBox1.Items[j]);
}
}
}
}
#endregion
#region 左移除
protected void ImageButton3_Click(object sender, ImageClickEventArgs e)
{
for (int i = 0; i < ListBox2.Items.Count; i++)
{
if (ListBox2.Items[i].Selected)
{
ListItem item = new ListItem();
item.Text = ListBox2.Items[i].Text;
item.Value = ListBox2.Items[i].Value;
ListBox1.Items.Add(item);
}
}
while (ListBox2.SelectedItem != null)
{
for (int j = 0; j < ListBox2.Items.Count; j++)
{
if (ListBox2.Items[j].Selected)
{
ListBox2.Items.Remove(ListBox2.Items[j]);
}
}
}
}
#endregion
protected void ImageButton2_Click(object sender, ImageClickEventArgs e)
{
for (int i = 0; i < ListBox1.Items.Count; i++)
{
if (ListBox1.Items[i].Selected)
{
ListItem item = new ListItem();
item.Text = ListBox1.Items[i].Text;
item.Value = ListBox1.Items[i].Value;
ListBox2.Items.Add(item);
}
}
while (ListBox1.SelectedItem != null)
{
for (int j = 0; j < ListBox1.Items.Count; j++)
{
if (ListBox1.Items[j].Selected)
{
ListBox1.Items.Remove(ListBox1.Items[j]);
}
}
}
}
#endregion
#region 左移除
protected void ImageButton3_Click(object sender, ImageClickEventArgs e)
{
for (int i = 0; i < ListBox2.Items.Count; i++)
{
if (ListBox2.Items[i].Selected)
{
ListItem item = new ListItem();
item.Text = ListBox2.Items[i].Text;
item.Value = ListBox2.Items[i].Value;
ListBox1.Items.Add(item);
}
}
while (ListBox2.SelectedItem != null)
{
for (int j = 0; j < ListBox2.Items.Count; j++)
{
if (ListBox2.Items[j].Selected)
{
ListBox2.Items.Remove(ListBox2.Items[j]);
}
}
}
}
#endregion
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询