New UWP Community Toolkit - Carousel

来源:https://www.cnblogs.com/shaomeng/archive/2018/03/31/8678625.html
-Advertisement-
Play Games

概述 New UWP Community Toolkit V2.2.0 的版本發佈日誌中提到了 Carousel 的調整,本篇我們結合代碼詳細講解 Carousel 的實現。 Carousel 是一種傳送帶形態的控制項,在圖片展示類的應用中有非常多的應用,它擁有很好的流暢度,可以做很多的自定義,並集成 ...


概述

New UWP Community Toolkit  V2.2.0 的版本發佈日誌中提到了 Carousel 的調整,本篇我們結合代碼詳細講解  Carousel 的實現。

Carousel 是一種傳送帶形態的控制項,在圖片展示類的應用中有非常多的應用,它擁有很好的流暢度,可以做很多的自定義,並集成了滑鼠,觸摸板,鍵盤等的操作。我們來看一下官方的介紹和官網示例中的展示:

The Carousel control provides a new control, inherited from the ItemsControl, representing a nice and smooth carousel.
This control lets you specify a lot of properties for a flexible layouting.
The Carousel control works fine with mouse, touch, mouse and keyboard as well.

Source: https://github.com/Microsoft/UWPCommunityToolkit/tree/master/Microsoft.Toolkit.Uwp.UI.Controls/Carousel

Doc: https://docs.microsoft.com/zh-cn/windows/uwpcommunitytoolkit/controls/carousel

Namespace: Microsoft.Toolkit.Uwp.UI.Controls; Nuget: Microsoft.Toolkit.Uwp.UI.Controls;

 

開發過程

代碼分析

先來看看 Carousel 的類結構組成:

  • Carousel.cs - Carousel 控制項類,繼承自 ItemsControl
  • Carousel.xaml - Carousel 的樣式文件,包含了 Carousel,CarouselItem,CarouselPanel 的樣式
  • CarouselItem.cs - CarouselItem 是 Carousel 控制項的列表中的選擇器 ItemTemplate
  • CarouselPanel.cs - CarouselPanel 是 Carousel 控制項的 ItemPanelTemplate

下麵來看一下幾個主要類中的主要代碼實現,因為篇幅關係,我們只摘錄部分關鍵代碼實現:

1. Carousel.cs 

在具體分析代碼前,我們先看看 Carousel 類的組成:

可以看到,作為一個集合類控制項,Carousel 也註冊了 SelectedItem 和 SelectedIndex 依賴屬性,並且因為控制項可以控制元素的深度,旋轉角度,動畫時長和類型,列表方向等,註冊了 TransitionDuration,ItemDepth,EasingFunction,ItemMargin,ItemRotationX,Orientation 等依賴屬性。而部分依賴屬性的 PropertyChanged 事件由 OnCarouselPropertyChanged(d, e) 來實現;

下麵來看一下 Carousel 類的構造方法:

構造方法中,首先設置了樣式,Tab 導航模式;定義了滑鼠滾輪,滑鼠點擊和鍵盤事件,並註冊了數據源變化事件來得到正確的 SelectedItem 和 SelectedIndex。 

public Carousel()
{
    // Set style
    DefaultStyleKey = typeof(Carousel);
    SetValue(AutomationProperties.NameProperty, "Carousel");
    IsHitTestVisible = true;

    IsTabStop = false;
    TabNavigation = KeyboardNavigationMode.Once;

    // Events registered
    PointerWheelChanged += OnPointerWheelChanged;
    PointerReleased += CarouselControl_PointerReleased;
    KeyDown += Keyboard_KeyUp;

    // Register ItemSource changed to get correct SelectedItem and SelectedIndex
    RegisterPropertyChangedCallback(ItemsSourceProperty, (d, dp) => { ... });
}

在鍵盤按鍵抬起的事件處理中,分別對應 Down,Up,Right 和 Left 做了處理,我們只截取了 Down 的處理過程;可以看到,如果列表方向為縱向,則 Down 按鍵會觸發 SelectedIndex++,也就是當前選擇項下移一位;對應其他三個按鍵也是類似的操作;OnPointerWheelChanged 的實現方式類似,這裡不贅述;

private void Keyboard_KeyUp(object sender, KeyRoutedEventArgs e)
{
    switch (e.Key)
    {
        case Windows.System.VirtualKey.Down:
        case Windows.System.VirtualKey.GamepadDPadDown:
        case Windows.System.VirtualKey.GamepadLeftThumbstickDown:
            if (Orientation == Orientation.Vertical)
            {
                if (SelectedIndex < Items.Count - 1)
                {
                    SelectedIndex++;
                }
                else if (e.OriginalKey != Windows.System.VirtualKey.Down)
                {
                    FocusManager.TryMoveFocus(FocusNavigationDirection.Down);
                }

                e.Handled = true;
            }

            break;
        ...
    }
}

接著看一下 PrepareContainerForItemOverride(element, item) 方法,它為 Item 設置了初始的 3D 旋轉的中心點,Item 變換的中心點;並根據當前選擇項確定 Item 是否被選中;

protected override void PrepareContainerForItemOverride(DependencyObject element, object item)
{
    base.PrepareContainerForItemOverride(element, item);

    var carouselItem = (CarouselItem)element;
    carouselItem.Selected += OnCarouselItemSelected;

    carouselItem.RenderTransformOrigin = new Point(0.5, 0.5);

    carouselItem.IsTabStop = Items.IndexOf(item) == SelectedIndex;
    carouselItem.UseSystemFocusVisuals = true;

    PlaneProjection planeProjection = new PlaneProjection();
    planeProjection.CenterOfRotationX = 0.5;
    planeProjection.CenterOfRotationY = 0.5;
    planeProjection.CenterOfRotationZ = 0.5;

    var compositeTransform = new CompositeTransform();
    compositeTransform.CenterX = 0.5;
    compositeTransform.CenterY = 0.5;
    compositeTransform.CenterZ = 0.5;

    carouselItem.Projection = planeProjection;
    carouselItem.RenderTransform = compositeTransform;

    if (item == SelectedItem)
    {
        carouselItem.IsSelected = true;
    }
}

2. Carousel.xaml

如上面類結構介紹時所說,Carousel.xaml 是 Carousel 控制項的樣式文件;下麵代碼中我把非關鍵部分用 ‘...’ 代替了,可以看到,主要是兩個部分的樣式:CarouselItem 和 Carousel,CarouselPanel 作為 Carousel 的 ItemsPanelTemplate;Carousel 控制項的 easing mode 是 'EaseOut'。

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
                    xmlns:local="using:Microsoft.Toolkit.Uwp.UI.Controls">

    <Style TargetType="local:CarouselItem">
        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate TargetType="local:CarouselItem">
                    <Grid BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}" Background="{TemplateBinding Background}">
                        <VisualStateManager.VisualStateGroups>
                            ...
                        </VisualStateManager.VisualStateGroups>
                        <ContentPresenter .../>
                    </Grid>
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>

    <Style TargetType="local:Carousel">
        <Setter Property="ItemsPanel">
            <Setter.Value>
                <ItemsPanelTemplate>
                    <local:CarouselPanel />
                </ItemsPanelTemplate>
            </Setter.Value>
        </Setter>
        <Setter Property="EasingFunction">
            <Setter.Value>
                <ExponentialEase EasingMode="EaseOut" />
            </Setter.Value>
        </Setter>
        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate TargetType="local:Carousel">
                    <Grid> 
...
</Grid> </ControlTemplate> </Setter.Value> </Setter> </Style> </ResourceDictionary>

3. CarouselItem.cs

在前面 Carousel.xaml 中我們看到了 CarouselItem 的樣式,有針對 VisualStateManager 的樣式狀態,而 CarouselItem 類則定義了這些狀態變化事件對應的處理方法。分別有 OnIsSelectedChanged,OnPointerEntered,OnPointerExited 和 OnPointerPressed,在觸發這些狀態時,CarouselItem 會對應切換到那個狀態時的樣式。

public CarouselItem()
{
    // Set style
    DefaultStyleKey = typeof(CarouselItem);
    RegisterPropertyChangedCallback(SelectorItem.IsSelectedProperty, OnIsSelectedChanged);
}

protected override void OnPointerEntered(PointerRoutedEventArgs e) {...}

protected override void OnPointerExited(PointerRoutedEventArgs e) {...}

protected override void OnPointerPressed(PointerRoutedEventArgs e) {...}

internal event EventHandler Selected;

private void OnIsSelectedChanged(DependencyObject sender, DependencyProperty dp)
{
    var item = (CarouselItem)sender;

    if (item.IsSelected)
    {
        Selected?.Invoke(this, EventArgs.Empty);
        VisualStateManager.GoToState(item, SelectedState, true);
    }
    else
    {
        VisualStateManager.GoToState(item, NormalState, true);
    }
}

4. CarouselPanel.cs 

同樣在具體分析代碼前,我們先看看 CarouselPanel 類的組成:

 

CarouselPanel 類繼承自 Panel 類,可以看到它接收的事件響應,有 OnTapped,OnManipulationDelta 和 OnManipulationCompleted,分別對應點按,觸摸移動和移動結束的處理。其中:

  • OnTapped 的處理主要是根據當前控制項的可視化範圍和尺寸,判斷點擊的點對應哪個元素被選中;
  • OnManipulationDelta 則是根據觸控操作的方向和量度等,決定 Item 的動畫幅度,動畫速度和每個元素變換狀態,以及選中元素的變化;
  • OnManipulationCompleted 則是在觸控結束後,確定結束動畫,以及結束時應該選中那個元素;
  • UpdatePosition() 方法則是在 OnManipulationDelta 方法觸發到 first 或 last 元素時,需要重新設置動畫;
  • GetProjectionFromManipulation(sender, e) 則是在 OnManipulationDelta 方法中,根據當前觸控的手勢,決定當前 Item 的 Projection;
  • GetProjectionFromSelectedIndex(i) 是根據當前選中的索引,來取得 Item 的 Projection;
  • ApplyProjection(element, proj, storyboard) 是應用獲取到的 Projection,包括旋轉,變換等動畫;

而因為 CarouselPanel 類繼承自 Panel 類,所以它也重寫了 MeasureOverride(availableSize) 和 ArrangeOverride(finalSize) 方法:

MeasureOverride(availableSize) 方法的實現中,主要是根據寬度和高度是否設置為無限值,如果是,且方向和元素排列順序一致,則尺寸為當前方向三個元素的寬度,然後把計算後的尺寸傳出去;

protected override Size MeasureOverride(Size availableSize)
{
    var containerWidth = 0d;
    var containerHeight = 0d;

    foreach (FrameworkElement container in Children)
    {
        container.Measure(availableSize);
        // get containerWidth and containerHeight for max
    }

    var width = 0d;
    var height = 0d;

    // It's a Auto size, so we define the size should be 3 items
    if (double.IsInfinity(availableSize.Width))
    {
        width = Carousel.Orientation == Orientation.Horizontal ? containerWidth * (Children.Count > 3 ? 3 : Children.Count) : containerWidth;
    }
    else
    {
        width = availableSize.Width;
    }

    // It's a Auto size, so we define the size should be 3 items
    if (double.IsInfinity(availableSize.Height))
    {
        height = Carousel.Orientation == Orientation.Vertical ? containerHeight * (Children.Count > 3 ? 3 : Children.Count) : containerHeight;
    }
    else
    {
        height = availableSize.Height;
    }

    Clip = new RectangleGeometry { Rect = new Rect(0, 0, width, height) };

    return new Size(width, height);
}

ArrangeOverride(finalSize) 方法則是排列元素的處理,因為 Carousel 控制項有動畫處理,所以在排列時需要考慮到元素排列的動畫,以及 Zindex;

protected override Size ArrangeOverride(Size finalSize)
{
    double centerLeft = 0;
    double centerTop = 0;

    Clip = new RectangleGeometry { Rect = new Rect(0, 0, finalSize.Width, finalSize.Height) };

    for (int i = 0; i < Children.Count; i++)
    {
        FrameworkElement container = Children[i] as FrameworkElement;
        ...
        // get the good center and top position
        // Get rect position
        // Placing the rect in the center of screen
        ...
        // Get the initial projection (without move)
        var proj = GetProjectionFromSelectedIndex(i);

        // apply the projection to the current object
        ApplyProjection(container, proj);

        // calculate zindex and opacity
        int zindex = (Children.Count * 100) - deltaFromSelectedIndex;
        Canvas.SetZIndex(container, zindex);
    }

    return finalSize;
}

 

調用示例

示例中我們實現了橫向的 Carousel 控制項,作為一個圖片列表,可以看到當前選中的 Item 的 ZIndex 是最高的,向兩側依次降低,而在滑動過程中,伴隨著 3D 和變換的動畫,ZIndex 也會一起變化,而滑動結束時,選中項重新計算,每一項的 Project 也會重新計算。

<Grid>
    <Border Margin="0">
        <controls:Carousel x:Name="CarouselControl"
            InvertPositive="True"
            ItemDepth="238"
            ItemMargin="-79"
            ItemRotationX="4"
            ItemRotationY="9"
            ItemRotationZ ="-3"
            Orientation="Horizontal"
            SelectedIndex="5">
            <controls:Carousel.EasingFunction>
                <CubicEase EasingMode="EaseOut" />
            </controls:Carousel.EasingFunction>
            <controls:Carousel.ItemTemplate>
                <DataTemplate>
                    <Image Width="200"
                        Height="200"
                        VerticalAlignment="Bottom"
                        Source="{Binding Thumbnail}"
                        Stretch="Uniform" />
                </DataTemplate>
            </controls:Carousel.ItemTemplate>
        </controls:Carousel>
    </Border>
</Grid>

  

 

總結

到這裡我們就把 UWP Community Toolkit 中的 Carousel 控制項的源代碼實現過程和簡單的調用示例講解完成了,希望能對大家更好的理解和使用這個控制項有所幫助,讓你的圖片列表控制項更加炫酷靈動。歡迎大家多多交流,謝謝!

最後,再跟大家安利一下 UWPCommunityToolkit 的官方微博:https://weibo.com/u/6506046490大家可以通過微博關註最新動態。

衷心感謝 UWPCommunityToolkit 的作者們傑出的工作,Thank you so much, UWPCommunityToolkit authors!!!


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • Description 一個無向連通圖,頂點從1編號到N,邊從1編號到M。 小Z在該圖上進行隨機游走,初始時小Z在1號頂點,每一步小Z以相等的概率隨機選 擇當前頂點的某條邊,沿著這條邊走到下一個頂點,獲得等於這條邊的編號的分數。當小Z 到達N號頂點時游走結束,總分為所有獲得的分數之和。 現在,請你對 ...
  • 匿名類對象 創建的類的對象是匿名的。當我們只需要一次調用類的對象時,我們就可以考慮使用匿名的方式創建類的對象。特點是創建的匿名類的對象只能夠調用一次! package day007; //圓的面積 class circle { double radius; public double getArea ...
  • turtle:海龜(海龜庫) Turtle庫是Python語言中一個很流行的繪製圖像的函數庫 使用之前需要導入庫:import turtle • turtle.setup(width,height,startx,starty) -setup() 設置窗體的位置和大小 相對於桌面的起始點的坐標以及視窗 ...
  • 恢復內容開始 這是我第一次寫博客,這個想法源於我的師傅對我的建議,一是與大家一起進步,二是讓自己養成總結的好習慣。 “如果你步入的maven的世界,你便打開了Java的另一扇大門”。 這篇文章是面向沒有接觸過maven的同學們,對於maven玩的很溜的,請指出該文章的不足。 1.什麼是maven? ...
  • 1、創建一個圖形對象的步驟如下見上一篇博客(三)2、添加刪除實體的工具函數見上一篇博客(四) 3、添加圓的例子(完整源代碼請加雲幽學院免費課yunyun.ke.qq.com) [CommandMethod("MKCircle")] public void MKCircle() { //(1)獲取當前 ...
  • 1、添加刪除實體 C# ObjectARX二次開發添加刪除實體是非常容易主要代碼如下: 添加實體: objId = btr.AppendEntity(entity); trans.AddNewlyCreatedDBObject(entity, true); 刪除實體: entity.Erase(tr ...
  • 資料庫遷移方式:PMC(程式包管理控制器),CLI(程式所在目錄控制台操作) 1:在遷移資料庫之前AppSetting.json中配置資料庫信息 註:在NuGet包管理器上同時引入Entityframeworkcore.Tools 和 Entityframeworkcore.sqlserver 插件 ...
  • 本文告訴大家如何使用 win2d 給圖片加上水印。 <! more <! 標簽:水印,win2d,uwp 安裝 首先需要使用 Nuget 安裝 win2d ,安裝參見 "win10 uwp win2d" 如果沒有更新 dot net core 那麼在運行可能會出現下麵異常 那麼直接更新 dot ne ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...