发布网友 发布时间:2022-04-23 06:18
共2个回答
热心网友 时间:2023-10-25 07:50
思路:
listview a = new listview();
listview b = new listview();
假设a有值,选中某个后,点击按钮,将选中的那项加入b中
b.items.add(a选中项);
然后在a中移出选中项
你试试看
热心网友 时间:2023-10-25 07:51
listview a = new listview();
listview b = new listview();
for(int i =0;i<a.items.count;i++)
{
b.items.add(a.items[i].text);
}
热心网友 时间:2023-10-03 06:53
思路:
listview a = new listview();
listview b = new listview();
假设a有值,选中某个后,点击按钮,将选中的那项加入b中
b.items.add(a选中项);
然后在a中移出选中项
你试试看
热心网友 时间:2023-10-03 06:53
listview a = new listview();
listview b = new listview();
for(int i =0;i<a.items.count;i++)
{
b.items.add(a.items[i].text);
}