在组合框中拖放项目

Drag and drop items in combobox

如何拖放组合框中的项目来更改它们的顺序? (https://docs.microsoft.com/en-us/uwp/api/windows.ui.xaml.controls.combobox?view=winrt-19041)

How can I drag and drop items in combobox to change their order?

恐怕您无法实现此功能,因为 Combobox use ItemsPresenter 显示项目,但 ItemsPresenter 不包含重新排序功能。如果你想改变项目的顺序,唯一的办法就是改变数据源的顺序。