背水一戰 Windows 10 (47) - 控制項(ScrollViewer 特性): Chaining, Rail, Inertia, Snap, Zoom

来源:http://www.cnblogs.com/webabcd/archive/2017/05/08/6823782.html
-Advertisement-
Play Games

背水一戰 Windows 10 之 控制項(ScrollViewer 特性): Chaining - 鎖鏈, Rail - 軌道, Inertia - 慣性, Snap - 對齊, Zoom - 縮放 ...


[源碼下載]


背水一戰 Windows 10 (47) - 控制項(ScrollViewer 特性): Chaining, Rail, Inertia, Snap, Zoom



作者:webabcd


介紹
背水一戰 Windows 10 之 控制項(ScrollViewer 特性)

  • Chaining - 鎖鏈
  • Rail - 軌道
  • Inertia - 慣性
  • Snap - 對齊
  • Zoom - 縮放



示例
1、演示 ScrollViewer 的 Chaining 特性
Controls/ScrollViewerDemo/Chaining.xaml

<Page
    x:Class="Windows10.Controls.ScrollViewerDemo.Chaining"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:Windows10.Controls.ScrollViewerDemo"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d">

    <Grid Background="Transparent">
        <StackPanel Margin="10 0 10 10">

            <ScrollViewer HorizontalScrollMode="Enabled" VerticalScrollMode="Enabled">
                <StackPanel>

                    <CheckBox Name="chkIsHorizontalScrollChainingEnabled" Content="IsHorizontalScrollChainingEnabled" IsChecked="True" Margin="5" />
                    <CheckBox Name="chkIsVerticalScrollChainingEnabled" Content="IsVerticalScrollChainingEnabled" IsChecked="True" Margin="5" />

                    <TextBlock Text="我是參照物" Margin="5" />
                    
                    <!--
                        Chaining: 鎖鏈,在觸摸模式下,滾動本 ScrollViewer 如果超出了邊界,則滾動其父 ScrollViewer
                            本例的測試方法:在觸摸模式下,滾動 ScrollViewer 內的內容直至超出邊界,超出邊界後不要停下來繼續滾動,通過“我是參照物”觀察父 ScrollViewer 是否也被滾動
                    
                        IsHorizontalScrollChainingEnabled - 是否啟用水平方向上的 Chaining,預設值為 true
                        IsVerticalScrollChainingEnabled - 是否啟用垂直方向上的 Chaining,預設值為 true
                    -->

                    <ScrollViewer Name="scrollViewer" Width="400" Height="400" Margin="5" HorizontalAlignment="Left" 
                          HorizontalScrollMode="Enabled" VerticalScrollMode="Enabled"
                          HorizontalScrollBarVisibility="Visible" VerticalScrollBarVisibility="Visible"
                          IsHorizontalScrollChainingEnabled="{Binding IsChecked, ElementName=chkIsHorizontalScrollChainingEnabled}"
                          IsVerticalScrollChainingEnabled="{Binding IsChecked, ElementName=chkIsVerticalScrollChainingEnabled}">
                        <Image Source="/Assets/StoreLogo.png" Width="1000" />
                    </ScrollViewer>

                </StackPanel>
            </ScrollViewer>

        </StackPanel>
    </Grid>
</Page>


2、演示 ScrollViewer 的 Rail 特性
Controls/ScrollViewerDemo/Rail.xaml

<Page
    x:Class="Windows10.Controls.ScrollViewerDemo.Rail"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:Windows10.Controls.ScrollViewerDemo"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d">

    <Grid Background="Transparent">
        <StackPanel Margin="10 0 10 10">

            <CheckBox Name="chkIsHorizontalRailEnabled" Content="IsHorizontalRailEnabled" IsChecked="True" Margin="5" />
            <CheckBox Name="chkIsVerticalRailEnabled" Content="IsVerticalRailEnabled" IsChecked="True" Margin="5" />
            
            <!--
                Rail: 軌道,在觸摸模式下,假設沿水平方向滾動,則由於軌道的作用,在鬆手前只能延水平方向滾動(即使手指有垂直方向的滾動也無用)
                
                IsHorizontalRailEnabled - 是否啟用水平方向上的軌道,預設值為 true
                IsVerticalRailEnabled - 是否啟用垂直方向上的軌道,預設值為 true
            -->

            <ScrollViewer Name="scrollViewer" Width="400" Height="400" Margin="5" HorizontalAlignment="Left"
                          HorizontalScrollMode="Enabled" VerticalScrollMode="Enabled"
                          HorizontalScrollBarVisibility="Visible" VerticalScrollBarVisibility="Visible"
                          IsHorizontalRailEnabled="{Binding IsChecked, ElementName=chkIsHorizontalRailEnabled}" 
                          IsVerticalRailEnabled="{Binding IsChecked, ElementName=chkIsVerticalRailEnabled}">
                <Image Source="/Assets/StoreLogo.png" Width="1000" />
            </ScrollViewer>

        </StackPanel>
    </Grid>
</Page>



3、演示 ScrollViewer 的 Inertia 特性
Controls/ScrollViewerDemo/Inertia.xaml

<Page
    x:Class="Windows10.Controls.ScrollViewerDemo.Inertia"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:Windows10.Controls.ScrollViewerDemo"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d">

    <Grid Background="Transparent">
        <StackPanel Margin="10 0 10 10">

            <CheckBox Name="chkIsScrollInertiaEnabled" Content="IsScrollInertiaEnabled" IsChecked="True" Margin="5" />

            <!--
                Inertia: 慣性,在觸摸模式下,用一個加速度滾動內容,鬆手後內容會具有慣性滾動效果
                
                IsScrollInertiaEnabled - 是否啟用慣性效果,預設值為 true
            -->

            <ScrollViewer Name="scrollViewer" Width="400" Height="400" Margin="5" HorizontalAlignment="Left"
                          HorizontalScrollMode="Enabled" VerticalScrollMode="Enabled"
                          HorizontalScrollBarVisibility="Visible" VerticalScrollBarVisibility="Visible"
                          IsScrollInertiaEnabled="{Binding IsChecked, ElementName=chkIsScrollInertiaEnabled}">
                <Image Source="/Assets/StoreLogo.png" Width="1000" />
            </ScrollViewer>

        </StackPanel>
    </Grid>
</Page>


4、演示 ScrollViewer 的 Snap 特性
Controls/ScrollViewerDemo/Snap.xaml

<Page
    x:Class="Windows10.Controls.ScrollViewerDemo.Snap"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:Windows10.Controls.ScrollViewerDemo"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d">

    <Grid Background="Transparent">
        <StackPanel Margin="10 0 10 10">

            <!--用於設置 ScrollViewer 的 HorizontalSnapPointsType-->
            <ComboBox Name="comboBox" SelectedIndex="0" SelectionChanged="comboBox_SelectionChanged" HorizontalAlignment="Left" Margin="5">
                <ComboBoxItem>HorizontalSnapPointsType = SnapPointsType.None</ComboBoxItem>
                <ComboBoxItem>HorizontalSnapPointsType = SnapPointsType.Optional</ComboBoxItem>
                <ComboBoxItem>HorizontalSnapPointsType = SnapPointsType.Mandatory</ComboBoxItem>
            </ComboBox>

            <ScrollViewer x:Name="scrollViewer" Width="400" Height="200" HorizontalAlignment="Left" Margin="5"
                          HorizontalScrollMode="Enabled" VerticalScrollMode="Enabled"
                          HorizontalScrollBarVisibility="Visible" VerticalScrollBarVisibility="Visible">
                <StackPanel Orientation="Horizontal">
                    <Image Width="400" Height="200" Stretch="Fill" Source="/Assets/StoreLogo.png" />
                    <Image Width="400" Height="200" Stretch="Fill" Source="/Assets/StoreLogo.png" />
                    <Image Width="350" Height="200" Stretch="Fill" Source="/Assets/StoreLogo.png" />
                    <Image Width="450" Height="200" Stretch="Fill" Source="/Assets/StoreLogo.png" />
                    <Image Width="400" Height="200" Stretch="Fill" Source="/Assets/StoreLogo.png" />

                    <TextBox Width="400" Height="200" FontSize="24" Text="message1" Name="txtMsg1"  />
                    <TextBox Width="400" Height="200" FontSize="24" Text="message2" Name="txtMsg2"  />
                    <TextBox Width="400" Height="200" FontSize="24" Text="message3" Name="txtMsg3"  />
                </StackPanel>
            </ScrollViewer>

            <!--用於演示通過程式定位到 ScrollViewer 內的指定元素-->
            <Button Name="btnScroll" Content="滾動到 txtMsg2" Click="btnScroll_Click" Margin="5" />

        </StackPanel>
    </Grid>
</Page>

Controls/ScrollViewerDemo/Snap.xaml.cs

/*
 * Snap: 對齊,在觸摸模式下,如果 ScrollViewer 有多個元素,在滾動結束後會定位到其中某一個具體的元素,這就叫對齊
 * 
 * HorizontalSnapPointsType - 水平方向上的對齊行為,Windows.UI.Xaml.Controls.SnapPointsType枚舉
 *     SnapPointsType.None - 不需要對齊,預設值
 *     SnapPointsType.Optional - 看情況,如果離某個元素很近則對齊此元素
 *     SnapPointsType.Mandatory - 強制對齊,必須對齊到某一元素
 *     SnapPointsType.OptionalSingle - 僅對 Zoom 對齊有用(參看 /Controls/ScrollViewerDemo/Zoom.xaml)
 *     SnapPointsType.MandatorySingle - 僅對 Zoom 對齊有用(參看 /Controls/ScrollViewerDemo/Zoom.xaml)
 * VerticalSnapPointsType - 垂直方向上的對齊行為
 * 
 * 
 * HorizontalSnapPointsAlignment - 水平方向上的對齊方式,Windows.UI.Xaml.Controls.Primitives.SnapPointsAlignment枚舉
 *     SnapPointsAlignment.Near - 元素的左側對齊 ScrollViewer 的左側邊界,預設值
 *     SnapPointsAlignment.Center - 元素的中心點對齊 ScrollViewer 的中心點
 *     SnapPointsAlignment.Far - 元素的右側對齊 ScrollViewer 的右側邊界
 * VerticalSnapPointsAlignment - 垂直方向上的對齊方式
 * 
 * 
 * BringIntoViewOnFocusChange - ScrollViewer 內的某元素獲得焦點後,是否需要定位到此元素,預設值為 true
 */

using Windows.UI.Xaml.Controls;

namespace Windows10.Controls.ScrollViewerDemo
{
    public sealed partial class Snap : Page
    {
        public Snap()
        {
            this.InitializeComponent();
            this.Loaded += Snap_Loaded;
        }

        void Snap_Loaded(object sender, Windows.UI.Xaml.RoutedEventArgs e)
        {
            scrollViewer.HorizontalSnapPointsAlignment = Windows.UI.Xaml.Controls.Primitives.SnapPointsAlignment.Near;
            scrollViewer.BringIntoViewOnFocusChange = true;
        }

        private void comboBox_SelectionChanged(object sender, SelectionChangedEventArgs e)
        {
            if (scrollViewer != null && comboBox != null)
            {
                switch (comboBox.SelectedIndex)
                {
                    case 0:
                        scrollViewer.HorizontalSnapPointsType = SnapPointsType.None;
                        break;
                    case 1:
                        scrollViewer.HorizontalSnapPointsType = SnapPointsType.Optional;
                        break;
                    case 2:
                        scrollViewer.HorizontalSnapPointsType = SnapPointsType.Mandatory;
                        break;
                    default:
                        scrollViewer.HorizontalSnapPointsType = SnapPointsType.None;
                        break;
                }
            }
        }

        private void btnScroll_Click(object sender, Windows.UI.Xaml.RoutedEventArgs e)
        {
            // 當 BringIntoViewOnFocusChange 為 true 時,如果 txtMsg2 獲得焦點,則 ScrollViewer 會自動滾動到 txtMsg2
            txtMsg2.Focus(Windows.UI.Xaml.FocusState.Programmatic);
        }
    }
}


5、演示 ScrollViewer 的 Zoom 特性
Controls/ScrollViewerDemo/Zoom.xaml

<Page
    x:Class="Windows10.Controls.ScrollViewerDemo.Zoom"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:Windows10.Controls.ScrollViewerDemo"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d">
    
    <Grid Background="Transparent">
        <StackPanel Margin="10 0 10 10">

            <Button Name="bntZoom" Click="bntZoom_Click" Content="放大/縮小到 0.5 倍" Margin="5" />
            
            <!--
                Zoom - 放大/縮小
            
                ZoomMode - 是否啟用“放大/縮小”功能(Disabled, Enabled),預設值為 Enabled
                MaxZoomFactor - 內容放大的最大倍數,預設值 10
                MinZoomFactor - 內容放大的最小倍數,預設值 0.1
            -->
            
            <ScrollViewer Name="scrollViewer" Width="400" Height="400" HorizontalAlignment="Left" Margin="5"
                          ZoomMode="Enabled" MaxZoomFactor="2" MinZoomFactor="0.5">
                <Image Source="/Assets/StoreLogo.png" Width="400" Height="400" />
            </ScrollViewer>

        </StackPanel>
    </Grid>
</Page>

Controls/ScrollViewerDemo/Zoom.xaml.cs

using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;

namespace Windows10.Controls.ScrollViewerDemo
{
    public sealed partial class Zoom : Page
    {
        public Zoom()
        {
            this.InitializeComponent();

            this.Loaded += Zoom_Loaded;
        }

        private void Zoom_Loaded(object sender, RoutedEventArgs e)
        {
            /*
             * ZoomSnapPoints - “放大/縮小”的對齊點的集合,預設是空的
             * 
             * ZoomSnapPointsType - “放大/縮小”的對齊行為
             *     SnapPointsType.None - 不需要對齊,預設值
             *     SnapPointsType.Optional - 看情況,如果離某個對齊點很近則對齊
             *     SnapPointsType.Mandatory - 強制對齊,必須對齊到某一個對齊點
             *     SnapPointsType.OptionalSingle - 同 Optional,但不能跳過對齊點
             *     SnapPointsType.MandatorySingle - 同 Mandatory,但不能跳過對齊點
             *     
             * IsZoomChainingEnabled - 是否啟用 Zoom 的 Chaining
             * IsZoomInertiaEnabled - 是否啟用 Zoom 的 Inertia
             * ZoomFactor - 獲取當前的 Zoom 的倍數
             * 
             * ZoomToFactor() - Zoom 到指定的倍數
             */

            scrollViewer.ZoomSnapPointsType = SnapPointsType.OptionalSingle;

            scrollViewer.ZoomSnapPoints.Add(0.5f);
            scrollViewer.ZoomSnapPoints.Add(0.8f);
            scrollViewer.ZoomSnapPoints.Add(1.0f);
            scrollViewer.ZoomSnapPoints.Add(1.5f);
            scrollViewer.ZoomSnapPoints.Add(2.0f);
        }

        private void bntZoom_Click(object sender, RoutedEventArgs e)
        {
            scrollViewer.ChangeView(null, null, 0.5f);
        }
    }
}



OK
[源碼下載]


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

-Advertisement-
Play Games
更多相關文章
  • find命令:用於在文件樹中查找文件,並作出相應的處理 1、find命令的格式; find pathname -options [-print -exec -ok ...] {}\ 2、find命令的參數; pathname: find命令所查找的目錄路徑。例如用“.”來表示當前目錄,用“/”來表示 ...
  • 功能說明:設置指令別名 語法:alias[別名]=[指令名稱] 詳解:1)不加參數,顯示已有的別名列表 2)設置別名:alias NAME='VALUE',使用NAME時相當於執行VALUE的內容 特別事項:1)定義的別名指針對當前Shell有效 2)要永久有效,需要定義配置文件 當前用戶:~/.b ...
  • 數組(http://www.cnblogs.com/afei-24/p/6738128.html)的大小是固定的。如果元素的個數是動態的,就應使用集合類。 列表(http://www.cnblogs.com/afei-24/p/6824791.html) 隊列(待寫) 棧(待寫) 鏈表(待寫) 有序 ...
  • .NET Framework為動態列表List提供泛型類List<T>。這個類實現了IList,ICollection,IEnumerable,IList<T>,ICollection<T>,IEnumerable<T>介面。1.創建列表 創建一個賽車手類,下麵的例子會用到: 調用預設的構造函數,就 ...
  • 一轉眼務農6年了,呆過大公司也去過小作坊,碼農的人生除了摳腚還是摳腚。在所有呆過的公司里,感覺項目沒有不延期的,真的是因為自己不努力嗎?也沒有呀!上班不怎麼聊QQ回家也很少看動作片,還搞過幾次通宵擼碼的。 以前總感覺是項目經理把工時估少了,後來自己也做過項目管理,按照以往的經歷估工時,做到最後還是會 ...
  • 1 public static class DataSetUtilities { 2 public static void SendDataSet(DataSet ds) { 3 if (ds == null) { 4 throw new ArgumentException("SendDataSet... ...
  • 什麼是架構,談下你項目中用的是什麼樣的架構?!! What?這個問題怎麼熟悉!!原來是在面試的時候經常面試官會問出這個問題。 架構是項目系統實施的整個思維過程。他不是一件容易的事。 需要架構師能夠充分把握業務需求,對行業及項目具有前瞻性的眼光,對抽象思維有精深的能力,應對變化有足夠的反應,這樣才... ...
  • 《Effective C#》快速筆記 - C# 中的動態編程 靜態類型和動態類型各有所長,靜態類型能夠讓編譯器幫你找出更多的錯誤,因為編譯器能夠在編譯時進行大部分的檢查工作。C# 是一種靜態類型的語言,不過它加入了動態類型的語言特性,可以更高效地解決問題。 本系列 《Effective C#》快速筆 ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...