我有两个列表框、两个文本框和按钮。当我按下按钮时,列表框 1 的项目被移动到列表框 2,但我想在文本字段中显示所选项目,我该怎么做?
txtbox.Text = listbox3.selecteditem.value;
不工作,我也试过
txtbox.Text = listbox3.selecteditem.tostring();
这是我的一段代码。'我对 asp .net 更新鲜
if (RadioButton1.Checked == true)
{
a = ListBox3.SelectedValue.ToString();
b = ListBox3.SelectedIndex;
ListBox4.Items.Add(a);
ListBox3.Items.RemoveAt(ListBox3.Items.IndexOf((ListBox3.SelectedItem)));
TextBox1.Text = RadioButton1.Text.ToString();
TextBox2.Text = ListBox3.SelectedItem.Value;
}