Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是一名初学者,我正在用 ASP.NET 制作会议管理系统,所以我想使用 TimePicker 以及如何将listbox1项目传输到listbox2.
listbox1
listbox2
逻辑是这样的:
if (list1.SelectedItem != null) { ListItem li = listLeft.SelectedItem; list1.Items.Remove(li); //if u want remove from list1 li.Selected = false; list2t.Items.Add(li); }