背水一戰 Windows 10 (40) - 控制項(導航類): AppBar, CommandBar

来源:http://www.cnblogs.com/webabcd/archive/2017/01/17/6291645.html
-Advertisement-
Play Games

背水一戰 Windows 10 之 控制項(導航類): AppBar, CommandBar ...


[源碼下載]


背水一戰 Windows 10 (40) - 控制項(導航類): AppBar, CommandBar



作者:webabcd


介紹
背水一戰 Windows 10 之 控制項(導航類)

  • AppBar
  • CommandBar



示例
1、AppBar 的示例
Controls/NavigationControl/AppBarDemo.xaml

<Page
    x:Class="Windows10.Controls.NavigationControl.AppBarDemo"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:Windows10.Controls.NavigationControl"
    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="chkIsSticky" Margin="5" Content="IsSticky" IsChecked="False" Checked="chkIsSticky_Checked" Unchecked="chkIsSticky_Unchecked" />
            <CheckBox Name="chkIsCompact" Margin="5" Content="IsCompact" IsChecked="False" Checked="chkIsCompact_Checked" Unchecked="chkIsCompact_Unchecked" />
            <StackPanel Margin="5" Orientation="Horizontal">
                <RadioButton Name="radioButtonMinimal" GroupName="myGroup" IsChecked="True" Content="AppBarClosedDisplayMode.Minimal" Checked="radioButtonMinimal_Checked" />
                <RadioButton Name="radioButtonHidden" GroupName="myGroup" Margin="10 0 0 0" Content="AppBarClosedDisplayMode.Hidden" Checked="radioButtonHidden_Checked" />
                <RadioButton Name="radioButtonCompact" GroupName="myGroup" Margin="10 0 0 0" Content="AppBarClosedDisplayMode.Compact" Checked="radioButtonCompact_Checked" />
            </StackPanel>

            <Button Name="btnOpen" Margin="5" Content="打開 AppBar" Click="btnOpen_Click" />
            <Button Name="btnClose" Margin="5" Content="關閉 AppBar" Click="btnClose_Click" />

        </StackPanel>
    </Grid>

    <!--
        Page.BottomAppBar - 下方應用程式欄控制項
        Page.TopAppBar - 上方應用程式欄控制項
    
        AppBar - 應用程式欄控制項
            IsOpen - 是否打開 AppBar
            IsSticky - 是否是粘性的 AppBar(即在點擊非 AppBar 區域時,是否不會關閉 AppBar),預設值 false
            ClosedDisplayMode - 應用程式欄關閉狀態下的顯示模式
                Minimal - 最小化模式,只顯示省略號,此值為預設值(CommandBar 的 ClosedDisplayMode 的預設值為 Compact)
                Hidden - 隱藏
                Compact - 顯示 icon,但是不會給 label 留出位置
            Opening, Opened, Closing, Closed - 幾個事件,不解釋
    -->
    <Page.BottomAppBar>
        <AppBar x:Name="appBar">
            <StackPanel Name="buttonPanel" Orientation="Horizontal" HorizontalAlignment="Left">

                <!--
                    關於 AppBarButton 請參見 /Controls/ButtonControl/AppBarButtonDemo.xaml
                    關於 AppBarToggleButton 請參見 /Controls/ButtonControl/AppBarToggleButtonDemo.xaml
                -->

                <AppBarButton Icon="Play" Label="SymbolIcon" />
                
                <AppBarSeparator />
                
                <AppBarToggleButton Label="BitmapIcon" >
                    <AppBarToggleButton.Icon>
                        <BitmapIcon UriSource="ms-appx:///Assets/StoreLogo.png"/>
                    </AppBarToggleButton.Icon>
                </AppBarToggleButton>

                <AppBarSeparator />
                
                <!--
                    AppBarButton 是支持 Flyout 的
                -->
                <AppBarButton Icon="Add" Label="Add">
                    <AppBarButton.Flyout>
                        <MenuFlyout>
                            <MenuFlyoutItem Text="MenuFlyout Item 1"/>
                            <MenuFlyoutItem Text="MenuFlyout Item 2"/>
                            <MenuFlyoutItem Text="MenuFlyout Item 3"/>
                        </MenuFlyout>
                    </AppBarButton.Flyout>
                </AppBarButton>
                
                <AppBarSeparator />

                <!--
                    AppBar 內可以包含任意元素
                -->
                <TextBlock Text="abc" />

            </StackPanel>
        </AppBar>
    </Page.BottomAppBar>
</Page>

Controls/NavigationControl/AppBarDemo.xaml.cs

/*
 * AppBar - 應用程式欄控制項(繼承自 ContentControl, 請參見 /Controls/BaseControl/ContentControlDemo/)
 * 
 * 
 * 註:
 * 1、當應用程式欄只有實現了 ICommandBarElement 介面(AppBarButton, AppBarToggleButton, AppBarSeparator)的控制項的時候建議使用 CommandBar(文檔推薦在 uwp 中使用 CommandBar)
 *    文檔說 uwp 中的 CommandBar 內可以包含非 ICommandBarElement 介面的控制項,但是實測發現並不可以
 * 2、如果除了實現了 ICommandBarElement 介面(AppBarButton, AppBarToggleButton, AppBarSeparator)的控制項之外,應用程式欄還需要其他元素,則需要使用 AppBar
 */

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

namespace Windows10.Controls.NavigationControl
{
    public sealed partial class AppBarDemo : Page
    {
        public AppBarDemo()
        {
            this.InitializeComponent();
        }

        private void btnOpen_Click(object sender, RoutedEventArgs e)
        {
            // 打開 AppBar
            appBar.IsOpen = true;
        }

        private void btnClose_Click(object sender, RoutedEventArgs e)
        {
            // 關閉 AppBar
            appBar.IsOpen = false;
        }

        private void chkIsSticky_Checked(object sender, RoutedEventArgs e)
        {
            // 點擊非 AppBar 區域時,不會關閉 AppBar
            appBar.IsSticky = true;
        }

        private void chkIsSticky_Unchecked(object sender, RoutedEventArgs e)
        {
            // 點擊非 AppBar 區域時,關閉 AppBar
            appBar.IsSticky = false;
        }

        private void chkIsCompact_Checked(object sender, RoutedEventArgs e)
        {
            var elements = buttonPanel.Children;
            foreach (var element in elements)
            {
                var button = element as ICommandBarElement;
                if (button != null)
                {
                    // IsCompact - 是否使用緊湊按鈕,即是否隱藏按鈕文本(來自 ICommandBarElement 介面。AppBarButton, AppBarToggleButton, AppBarSeparator 均實現了此介面)
                    //     true - 只顯示按鈕圖標
                    //     false - 顯示按鈕圖標和按鈕文本
                    button.IsCompact = true;
                }
            }
        }

        private void chkIsCompact_Unchecked(object sender, RoutedEventArgs e)
        {
            var elements = buttonPanel.Children;
            foreach (var element in elements)
            {
                var button = element as ICommandBarElement;
                if (button != null)
                {
                    button.IsCompact = false;
                }
            }
        }

        private void radioButtonMinimal_Checked(object sender, RoutedEventArgs e)
        {
            if (appBar != null)
                appBar.ClosedDisplayMode = AppBarClosedDisplayMode.Minimal;
        }

        private void radioButtonHidden_Checked(object sender, RoutedEventArgs e)
        {
            if (appBar != null)
                appBar.ClosedDisplayMode = AppBarClosedDisplayMode.Hidden;
        }

        private void radioButtonCompact_Checked(object sender, RoutedEventArgs e)
        {
            if (appBar != null)
                appBar.ClosedDisplayMode = AppBarClosedDisplayMode.Compact;
        }
    }
}


2、CommandBar 的示例
Controls/NavigationControl/CommandBarDemo.xaml

<Page
    x:Class="Windows10.Controls.NavigationControl.CommandBarDemo"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:Windows10.Controls.NavigationControl"
    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="chkIsSticky" Margin="5" Content="IsSticky" IsChecked="False" Checked="chkIsSticky_Checked" Unchecked="chkIsSticky_Unchecked" />
            <StackPanel Margin="5" Orientation="Horizontal">
                <RadioButton Name="radioButtonMinimal" GroupName="myGroup" Content="AppBarClosedDisplayMode.Minimal" Checked="radioButtonMinimal_Checked" />
                <RadioButton Name="radioButtonHidden" GroupName="myGroup" Margin="10 0 0 0" Content="AppBarClosedDisplayMode.Hidden" Checked="radioButtonHidden_Checked" />
                <RadioButton Name="radioButtonCompact" GroupName="myGroup" Margin="10 0 0 0" IsChecked="True" Content="AppBarClosedDisplayMode.Compact" Checked="radioButtonCompact_Checked" />
            </StackPanel>

            <Button Name="btnOpen" Margin="5" Content="打開 CommandBar" Click="btnOpen_Click" />
            <Button Name="btnClose" Margin="5" Content="關閉 CommandBar" Click="btnClose_Click" />

        </StackPanel>
    </Grid>

    <!--
        Page.BottomAppBar - 下方應用程式欄控制項
        Page.TopAppBar - 上方應用程式欄控制項
    
        CommandBar - 應用程式欄控制項。相對於 AppBar 來說, CommandBar 易用性強,擴展性弱(在 CommandBar 內只能包含 AppBarButton, AppBarToggleButton, AppBarSeparator)。CommandBar 繼承自 AppBar
            IsOpen - 是否打開 CommandBar
            IsSticky - 是否是粘性的 CommandBar(即在點擊非 CommandBar 區域時,是否不會關閉 CommandBar),預設值 false
            ClosedDisplayMode - 應用程式欄關閉狀態下的顯示模式
                Minimal - 最小化模式,只顯示省略號
                Hidden - 隱藏
                Compact - 顯示 PrimaryCommands 中的按鈕的 icon,但不顯示其 label,且 SecondaryCommands 中的按鈕不會顯示,此值為預設值(AppBar 的 ClosedDisplayMode 的預設值為 Minimal)
            Opening, Opened, Closing, Closed - 幾個事件,不解釋
    
        註:無法手動設置 CommandBar 中的 AppBarButton, AppBarToggleButton, AppBarSeparator 的 IsCompact 屬性,其如何設置由系統自己決定(比如 Compact 模式的關閉狀態的 CommandBar 會隱藏 label,打開狀態的 CommandBar 會顯示 label)
    -->
    <Page.BottomAppBar>
        <CommandBar x:Name="commandBar">

            <!--
                關於 AppBarButton 請參見 /Controls/ButtonControl/AppBarButtonDemo.xaml
                關於 AppBarToggleButton 請參見 /Controls/ButtonControl/AppBarToggleButtonDemo.xaml
            -->
            
            <AppBarToggleButton Icon="Shuffle" Label="Shuffle" />
            <AppBarToggleButton Icon="RepeatAll" Label="Repeat" />
            <AppBarSeparator/>
            <AppBarButton Icon="Back" Label="Back" />
            <AppBarButton Icon="Stop" Label="Stop" />
            <AppBarButton Icon="Play" Label="Play" />
            <AppBarButton Icon="Forward" Label="Forward" />
            <AppBarSeparator/>
            <!--
                AppBarButton 是支持 Flyout 的
            -->
            <AppBarButton Icon="Add" Label="Add">
                <AppBarButton.Flyout>
                    <MenuFlyout>
                        <MenuFlyoutItem Text="MenuFlyout Item 1"/>
                        <MenuFlyoutItem Text="MenuFlyout Item 2"/>
                        <MenuFlyoutItem Text="MenuFlyout Item 3"/>
                    </MenuFlyout>
                </AppBarButton.Flyout>
            </AppBarButton>

            <!--
                CommandBar.PrimaryCommands - 其內的按鈕會顯示在 CommandBar 內部的右側([ContentProperty(Name = "PrimaryCommands")])
                CommandBar.SecondaryCommands - 其內的按鈕會顯示在 CommandBar 的上部(只顯示 label,不顯示 icon)
            -->
            <CommandBar.SecondaryCommands>
                <AppBarButton Icon="Like" Label="Like" />
                <AppBarButton Icon="Dislike" Label="Dislike" />
            </CommandBar.SecondaryCommands>

            <!--
                設置 CommandBar 或 AppBar 的 Style 自然是通過 AppBar.Style
                那麼如何設置 CommandBar.SecondaryCommands 的樣式呢?可以通過 CommandBar.CommandBarOverflowPresenterStyle
            -->
            <CommandBar.CommandBarOverflowPresenterStyle>
                <Style TargetType="CommandBarOverflowPresenter">
                    <Setter Property="Background" Value="Black" />
                </Style>
            </CommandBar.CommandBarOverflowPresenterStyle>
        </CommandBar>
    </Page.BottomAppBar>
</Page>

Controls/NavigationControl/CommandBarDemo.xaml.cs

/*
 * CommandBar - 應用程式欄控制項。相對於 AppBar 來說, CommandBar 易用性強,擴展性弱(繼承自 AppBar, 請參見 /Controls/NavigationControl/AppBarDemo.xaml)
 *
 * 註:
 * 1、當應用程式欄只有實現了 ICommandBarElement 介面(AppBarButton, AppBarToggleButton, AppBarSeparator)的控制項的時候建議使用 CommandBar(文檔推薦在 uwp 中使用 CommandBar)
 *    文檔說 uwp 中的 CommandBar 內可以包含非 ICommandBarElement 介面的控制項,但是實測發現並不可以
 * 2、如果除了實現了 ICommandBarElement 介面(AppBarButton, AppBarToggleButton, AppBarSeparator)的控制項之外,應用程式欄還需要其他元素,則需要使用 AppBar
 */

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

namespace Windows10.Controls.NavigationControl
{
    public sealed partial class CommandBarDemo : Page
    {
        public CommandBarDemo()
        {
            this.InitializeComponent();
        }

        private void btnOpen_Click(object sender, RoutedEventArgs e)
        {
            // 打開 CommandBar
            commandBar.IsOpen = true;
        }

        private void btnClose_Click(object sender, RoutedEventArgs e)
        {
            // 關閉 CommandBar
            commandBar.IsOpen = false;
        }

        private void chkIsSticky_Checked(object sender, RoutedEventArgs e)
        {
            // 點擊非 CommandBar 區域時,不會關閉 CommandBar
            commandBar.IsSticky = true;
        }

        private void chkIsSticky_Unchecked(object sender, RoutedEventArgs e)
        {
            // 點擊非 CommandBar 區域時,關閉 CommandBar
            commandBar.IsSticky = false;
        }

        private void radioButtonMinimal_Checked(object sender, RoutedEventArgs e)
        {
            if (commandBar != null)
                commandBar.ClosedDisplayMode = AppBarClosedDisplayMode.Minimal;
        }

        private void radioButtonHidden_Checked(object sender, RoutedEventArgs e)
        {
            if (commandBar != null)
                commandBar.ClosedDisplayMode = AppBarClosedDisplayMode.Hidden;
        }

        private void radioButtonCompact_Checked(object sender, RoutedEventArgs e)
        {
            if (commandBar != null)
                commandBar.ClosedDisplayMode = AppBarClosedDisplayMode.Compact;
        }
    }
}


3、AppBarButton 的示例
Controls/ButtonControl/AppBarButtonDemo.xaml

<Page
    x:Class="Windows10.Controls.ButtonControl.AppBarButtonDemo"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:Windows10.Controls.ButtonControl"
    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">

            <!--
                AppBarButton - 程式欄按鈕控制項(關於此控制項的應用場景請參見:/Controls/NavigationControl/AppBarDemo.xaml 和 /Controls/NavigationControl/CommandBarDemo.xaml)
                    Label - 顯示的文本
                    Icon - 顯示的圖標(IconElement 類型,關於 IconElement 請參見 /Controls/IconControl/IconElementDemo.xaml)
                    IsCompact - 是否是緊湊模式,即是否不顯示 Label 指定的文本(預設值 false)
            -->
            
            
            <!--
                直接指定 Icon 為一個 Symbol 枚舉值,此時所設置的是 SymbolIcon
            -->
            <AppBarButton Name="appBarButton1" Icon="Accept" Label="accept" Margin="5" />

            
            <!--
                需要設置 Icon 為一個 SymbolIcon 或 FontIcon 或 PathIcon 或 BitmapIcon 類型的話,可以這樣設置
            -->
            <AppBarButton Name="appBarButton2" Label="find" IsCompact="True" Margin="5">
                <AppBarButton.Icon>
                    <FontIcon Name="fontIcon1" FontFamily="Segoe UI Emoji" Glyph="&#x2713;" />
                </AppBarButton.Icon>
            </AppBarButton>

            <!--
                AppBarButton 是支持 Flyout 的
            -->
            <AppBarButton Icon="Add" Label="Add" Margin="5">
                <AppBarButton.Flyout>
                    <MenuFlyout>
                        <MenuFlyoutItem Text="MenuFlyout Item 1"/>
                        <MenuFlyoutItem Text="MenuFlyout Item 2"/>
                        <MenuFlyoutItem Text="MenuFlyout Item 3"/>
                    </MenuFlyout>
                </AppBarButton.Flyout>
            </AppBarButton>

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


4、AppBarToggleButton 的示例
Controls/ButtonControl/AppBarToggleButtonDemo.xaml

<Page
    x:Class="Windows10.Controls.ButtonControl.AppBarToggleButtonDemo"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:Windows10.Controls.ButtonControl"
    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">

            <!--
                AppBarToggleButton - 程式欄可切換狀態的按鈕控制項(關於此控制項的應用場景請參見:/Controls/NavigationControl/AppBarDemo.xaml 和 /Controls/NavigationControl/CommandBarDemo.xaml)
                    Label - 顯示的文本
                    Icon - 顯示的圖標(IconElement 類型,關於 IconElement 請參見 /Controls/IconControl/IconElementDemo.xaml)
                    IsCompact - 是否是緊湊模式,即是否不顯示 Label 指定的文本(預設值 false)
            -->


            <!--
                直接指定 Icon 為一個 Symbol 枚舉值,此時所設置的是 SymbolIcon
            -->
            <AppBarToggleButton Name="appBarToggleButton1" Icon="Accept" Label="accept" Margin="5" />


            <!--
                需要設置 Icon 為一個 SymbolIcon 或 FontIcon 或 PathIcon 或 BitmapIcon 類型的話,可以這樣設置
            -->
            <AppBarToggleButton Name="appBarToggleButton2" Label="find" IsCompact="True" Margin="5">
                <AppBarToggleButton.Icon>
                    <FontIcon Name="fontIcon1" FontFamily="Segoe UI Emoji" Glyph="&#x2713;" />
                </AppBarToggleButton.Icon>
            </AppBarToggleButton>

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



OK
[源碼下載]


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

-Advertisement-
Play Games
更多相關文章
  • 運行級別 說明 0 系統關機狀態 1 單用戶工作狀態,用於root對系統進行維護,此時不予許其他用戶使用主機。(類似於windows 的安全模式) 2 多用戶狀態(沒有NFS) 3 多用戶狀態(有NFS),主機做為伺服器常在該模式下工作 4 系統未定義 5 多用戶狀態,並且在系統啟動後運行xwind ...
  • 我這裡要講的並不是IPC中的消息隊列,我要講的是在進程內部實現自定義的消息隊列,讓各個線程的消息來推動整個進程的運動。進程間的消息隊列用於進程與進程之間的通信,而我將要實現的進程內的消息隊列是用於有序妥當處理來自於各個線程請求,避免一窩蜂的請求而導致消息的異常丟失。想想socket編程里的liste ...
  • Linux系統下給非root用戶添加sudo許可權 有時,在linux系統中非root用戶運行sudo命令,會提示類似信息: xxx is not in the sudoers file. This incident will be reported. 這裡,xxx是當前用戶名,該用戶無法執行sudo ...
  • 鏈接: top:命令提供了實時的對系統處理器的狀態監視.它將顯示系統中CPU最“敏感”的任務列表. 該命令可以按CPU使用.記憶體使用和執行時間對任務進行排序; 而且該命令的很多特性都可以通過互動式命令或者在個人定製文件中進行設定. top - 01:06:48 up 1:22, 1 user, lo ...
  • 1 平臺匯流排的簡介 平臺匯流排是一種虛擬的匯流排,相應的設備則為platform_device,而驅動則為platform_driver。匯流排將設備和驅動綁定,在系統每註冊一個設備的時候,會尋找與之匹配的驅動;相反的,在系統每註冊一個驅動的時候,會尋找與之匹配的設備,而匹配由匯流排完成。 我們可以把一個驅 ...
  • 作者:楓雪庭 出處:http://www.cnblogs.com/FengXueTing-px/ 歡迎轉載 前言 雖然Emacs已經可以完成大部分的編輯操作,但有時候為了方便也會用到vim。所以記錄了vim的簡單操作,只要求到達上手即可。 本文簡單記錄了,vim編輯器模式之間的轉換和複製粘貼操作。 ...
  • 之前我們做的按鍵驅動程式都是應用程式主動open設備/dev/buttons而現實情況不能來打開這個設備甚至不知道這個設備的存在。 解決方案:變成通用的驅動程式。接下來我們引入的輸入子系統可以完成該任務。 1.輸入子系統的簡介 1.1 引入輸入子系統的好處: (1)統一了物理形態各異的相似的輸入設備 ...
  • 本系列主要翻譯自《ASP.NET MVC Interview Questions and Answers 》 By Shailendra Chauhan,想看英文原版的可訪問 "http://www.dotnettricks.com/free ebooks" 自行下載。該書主要分為兩部分,ASP.N ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...