您的位置:首页 > 其它

【UWP】拖拽列表项的排序功能实现

2017-02-22 10:16 399 查看
在一些允许用户自定义栏目顺序的app(如:凤凰新闻、网易云音乐等),我们可以方便地拖拽列表项来完成列表的重新排序,进而完成对栏目顺序的重排。这个功能很人性化,而实现起来其实很简单(甚至都不用写什么后台代码),只有三步。

①把冰箱门打开

首先,我们需要让冰箱的大门敞开,也就是允许我们进行拖拽的相关操作。以ListView为例,注意下面几个属性。

1     <StackPanel>
2         <ListView x:Name="list"
3                   AllowDrop="True"
4                   CanReorderItems="True"
5                   IsSwipeEnabled="True">
6             <ListView.ItemContainerStyle>
7                 <Style TargetType="ListViewItem">
8                     <Setter Property="Background" Value="Gray"/>
9                     <Setter Property="Foreground" Value="White"/>
10                     <Setter Property="Margin" Value="4"/>
11                 </Style>
12             </ListView.ItemContainerStyle>
13         </ListView>
14         <Button Click="Button_Click">Show Items</Button>
15         <TextBlock x:Name="txt"/>
16     </StackPanel>


AllowDrop属性允许元素进行拖动,它继承自UIElement基类,为所有可视元素支持。

CanReorderItems属性继承自ListViewBase基类,允许列表控件的项可以重新排序。

IsSwipeEnabled属性(swipe有“轻扫”之意)也需要设置为“True”,否则在触摸屏等输入设备下无法进行操作。相关的详尽说明在MSDN文档里有介绍(https://docs.microsoft.com/en-us/uwp/api/Windows.UI.Xaml.Controls.ListViewBase),此部分摘录部分原文:

Remarks

Setting IsSwipeEnabled to false disables some default touch interactions, so it should be set to true when these interactions are needed. For example:

If item selection is enabled and you set IsSwipeEnabled to false, a user can deselect items by right-clicking with the mouse, but can't deselect an item with touch by using a swipe gesture.

If you set CanDragItems to true and IsSwipeEnabled to false, a user can drag items with the mouse, but not with touch.

If you set CanReorderItems to true and IsSwipeEnabled to false, a user can reorder items with the mouse, but not with touch.

You typically set IsSwipeEnabled to false to disable swipe animations when items in the view don't support interactions that use the swipe gesture, like deselecting, dragging, and reordering. Disabling the animation when it's not needed can improve the performance of your app.

(有趣的是最后一段:当列表不允许轻扫手势(撤销选定,拖动,拖拽重排)时,我们可以“显式”地将IsSwipeEnabled属性设置为False来提升应用的性能。)

②把大象装进去

前台ok后,我们就可以在后台加点东西,把我们的排序逻辑(其实并没有,微软已经写好了)添加进去。这个demo里,我用了一个按钮和一个文本框来观察重排的结果。如下:

1     public sealed partial class MainPage : Page
2     {
3         public MainPage()
4         {
5             this.InitializeComponent();
6             for (int i = 0; i < 10; i++)
7             {
8                 list.Items.Add($"-----THIS IS ITEM {i}-----");
9             }
10         }
11
12         private void Button_Click(object sender, RoutedEventArgs e)
13         {
14             txt.Text = string.Empty;
15             foreach (var item in list.Items)
16             {
17                 txt.Text += item.ToString()[18] + " ";
18             }
19         }
20     }


这样,重新排序后,点击按钮,我们即可观察到结果了。

③把冰箱门关上

把大象(?)装进去之后,最后就是我们的收尾工作了。显然,刚才的列表只是一个中间的载体,是我们待排序栏目的简单显示。一般而言,这个listview会安置在contentdialog或是popup里,那么怎么在重排后立即让父页面上的栏目得到相应,进行重排呢?我们用个预定义的委托即可,加在刚才的后台代码里(冰箱能装的东西其实挺多的)。

public Action action;


然后在父页面注册方法,比如:

1             btn.Click += async (s, e) =>
2             {
3                 var dialog = new Dialogs.Sort();
4                 dialog.action += async () => { await sortagain(); };
5                 await dialog.ShowAsync();
6             };


大功告成!
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: