WPF 實現圖標按鈕

来源:https://www.cnblogs.com/fengxinyuan/p/18295339
-Advertisement-
Play Games

假設需要實現一個圖標和文本結合的按鈕 ,普通做法是 直接重寫該按鈕的模板; 如果想作為通用的呢? 兩種做法: 附加屬性 自定義控制項 推薦使用附加屬性的形式 第一種:附加屬性 創建Button的附加屬性 ButtonExtensions 1 public static class ButtonExte ...


假設需要實現一個圖標和文本結合的按鈕 ,普通做法是 直接重寫該按鈕的模板;

如果想作為通用的呢?

兩種做法:

  1. 附加屬性
  2. 自定義控制項

推薦使用附加屬性的形式

第一種:附加屬性

創建Button的附加屬性  ButtonExtensions

 1 public static class ButtonExtensions
 2 {
 3     // Using a DependencyProperty as the backing store for IconWidth.  This enables animation, styling, binding, etc...
 4     public static readonly DependencyProperty IconWidthProperty =
 5         DependencyProperty.RegisterAttached("IconWidth", typeof(int), typeof(ButtonExtensions), new PropertyMetadata(0));
 6 
 7     public static int GetIconWidth(DependencyObject obj)
 8     {
 9         return (int)obj.GetValue(IconWidthProperty);
10     }
11 
12     public static void SetIconWidth(DependencyObject obj, int value)
13     {
14         obj.SetValue(IconWidthProperty, value);
15     }
16 
17     // Using a DependencyProperty as the backing store for IconHeight.  This enables animation, styling, binding, etc...
18     public static readonly DependencyProperty IconHeightProperty =
19         DependencyProperty.RegisterAttached("IconHeight", typeof(int), typeof(ButtonExtensions), new PropertyMetadata(0));
20 
21     public static int GetIconHeight(DependencyObject obj)
22     {
23         return (int)obj.GetValue(IconHeightProperty);
24     }
25 
26     public static void SetIconHeight(DependencyObject obj, int value)
27     {
28         obj.SetValue(IconHeightProperty, value);
29     }
30 
31     // Using a DependencyProperty as the backing store for IconGeometry.  This enables animation, styling, binding, etc...
32     public static readonly DependencyProperty IconGeometryProperty =
33         DependencyProperty.RegisterAttached("IconGeometry", typeof(Geometry), typeof(ButtonExtensions), new PropertyMetadata((object)null));
34 
35     public static Geometry GetIconGeometry(DependencyObject obj)
36     {
37         return (Geometry)obj.GetValue(IconGeometryProperty);
38     }
39 
40     public static void SetIconGeometry(DependencyObject obj, Geometry value)
41     {
42         obj.SetValue(IconGeometryProperty, value);
43     }
44 
45 }

樣式

 1 <ResourceDictionary
 2     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
 3     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
 4     xmlns:coreHelper="clr-namespace:NeonGenesis.Core.AttachedProperties;assembly=NeonGenesis.Core">
 5     <Style x:Key="ButtonVerBase" TargetType="{x:Type Button}">
 6         <Setter Property="BorderThickness" Value="0" />
 7         <Setter Property="HorizontalContentAlignment" Value="Center" />
 8         <Setter Property="VerticalContentAlignment" Value="Center" />
 9         <Setter Property="Padding" Value="10,5" />
10         <Setter Property="FrameworkElement.Cursor" Value="Hand" />
11         <Setter Property="UIElement.SnapsToDevicePixels" Value="True" />
12         <Setter Property="coreHelper:ButtonExtensions.IconHeight" Value="24" />
13         <Setter Property="coreHelper:ButtonExtensions.IconWidth" Value="24" />
14         <Setter Property="Template">
15             <Setter.Value>
16                 <ControlTemplate TargetType="{x:Type ButtonBase}">
17                     <Border
18                         Name="border"
19                         Background="{TemplateBinding Background}"
20                         BorderBrush="{TemplateBinding BorderBrush}"
21                         BorderThickness="{TemplateBinding BorderThickness}"
22                         SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}">
23                         <Grid>
24                             <StackPanel
25                                 Margin="{TemplateBinding Padding}"
26                                 HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}"
27                                 VerticalAlignment="{TemplateBinding VerticalContentAlignment}"
28                                 Orientation="Vertical">
29                                 <Path
30                                     Name="pathIcon"
31                                     Width="{Binding RelativeSource={RelativeSource Mode=TemplatedParent}, Path=(coreHelper:ButtonExtensions.IconWidth)}"
32                                     Height="{Binding RelativeSource={RelativeSource Mode=TemplatedParent}, Path=(coreHelper:ButtonExtensions.IconHeight)}"
33                                     Margin="0,0,0,5"
34                                     Data="{Binding RelativeSource={RelativeSource Mode=TemplatedParent}, Path=(coreHelper:ButtonExtensions.IconGeometry)}"
35                                     Fill="{TemplateBinding Foreground}"
36                                     Stretch="Uniform" />
37                                 <ContentPresenter
38                                     Name="contentPresenter"
39                                     HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}"
40                                     VerticalAlignment="{TemplateBinding VerticalContentAlignment}"
41                                     Focusable="False"
42                                     RecognizesAccessKey="True"
43                                     SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" />
44                             </StackPanel>
45                         </Grid>
46                     </Border>
47                     <ControlTemplate.Triggers>
48                         <Trigger Property="coreHelper:ButtonExtensions.IconGeometry" Value="{x:Null}">
49                             <Setter TargetName="pathIcon" Property="Visibility" Value="Collapsed" />
50                         </Trigger>
51                         <Trigger Property="Content" Value="{x:Null}">
52                             <Setter TargetName="pathIcon" Property="Margin" Value="0" />
53                         </Trigger>
54                     </ControlTemplate.Triggers>
55                 </ControlTemplate>
56             </Setter.Value>
57         </Setter>
58     </Style>
59 </ResourceDictionary>

使用示例

 1     <Button
 2         Width="80"
 3         Height="80"
 4         coreHelper:ButtonExtensions.IconGeometry="{StaticResource RunningGeometry}"
 5         coreHelper:ButtonExtensions.IconHeight="40"
 6         coreHelper:ButtonExtensions.IconWidth="40"
 7         Background="#1e90ff"
 8         Content="運行"
 9         Foreground="White"
10         Style="{StaticResource ButtonVerBase}" />

RunningGeometry為

<PathGeometry x:Key="RunningGeometry">M41.355947 0h572.962133a41.355947 41.355947 0 0 1 41.355947 41.355947v100.037973H0V41.355947A41.355947 41.355947 0 0 1 41.355947 0zM0 210.356907v772.287146A41.355947 41.355947 0 0 0 41.355947 1024h941.288106A41.355947 41.355947 0 0 0 1024 982.644053V210.356907z m851.88608 295.867733L581.973333 776.137387a47.786667 47.786667 0 0 1-66.710186 0.832853 47.786667 47.786667 0 0 1-7.796054-6.294187l-115.083946-115.0976-120.54528 120.558934a47.786667 47.786667 0 0 1-67.611307 0 47.786667 47.786667 0 0 1 0-67.611307l147.12832-147.12832a48.237227 48.237227 0 0 1 13.653333-9.557333 47.786667 47.786667 0 0 1 62.887254 4.096l119.6032 119.507626 236.776106-236.817066a47.786667 47.786667 0 0 1 67.611307 0 47.786667 47.786667 0 0 1 0 67.597653z</PathGeometry>

效果

 

第二種:自定義控制項

後續更新

 

本文來自博客園,作者:阿金啊,轉載請註明原文鏈接:https://www.cnblogs.com/fengxinyuan/p/18295339


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

-Advertisement-
Play Games
更多相關文章
  • 目錄<thread>this_thread命名空間1. get_id()2. sleep_for()3. sleep_until()4. yield()thread類構造函數:類方法1. get_id()2. join()3. detach()4. joinable()5. operator=6. ...
  • 本文主要介紹 HSQLDB 的基本使用,文中所使用到的軟體版本:Java 11.0.22、HSQLDB 2.7.2。 1、進程內模式 直接使用 JDBC 連接資料庫即可,如果資料庫不存在會自動創建。 1.1、file 資料庫 @Test public void inProcessFile() thr ...
  • 前言 Serilog是 .NET 上的一個原生結構化高性能日誌庫,這個庫能實現一些比內置庫更高度的定製。日誌持久化是其中一個非常重要的功能,生產環境通常很難掛接調試器或者某些bug的觸發條件很奇怪。為了在脫離調試環境的情況下儘可能保留更多線索來輔助解決生產問題,持久化的日誌就顯得很重要了。目前Ser ...
  • 一:背景 1. 講故事 前段時間有位朋友找到我,說他們有一個崩潰的dump讓我幫忙看下怎麼回事,確實有太多的人在網上找各種故障分析最後聯繫到了我,還好我一直都是免費分析,不收取任何費用,造福社區。 話不多說,既然有 dump 來了,那就上 windbg 說話吧。 二:WinDbg 分析 1. 為什麼 ...
  • 早兩天寫了一篇S3簡單上傳文件的小工具,知乎上看到了一個問題問如何實現顯示MINIO上傳進度,因此拓展一下這個小工具能夠在上傳大文件時顯示進度。 ...
  • 提高錄製視頻的質量,使腳本內容資料、筆記本電腦屏幕、手機錄製三者有機會整合在一起,主要解決的問題和特點:(1)在手機錄製視頻過程,不會因為眼睛看腳本內容導致眼神漂浮,眼睛與手機攝像頭保持對焦狀態。(2)隨意調整文字腳本區域大小、手機與電腦屏幕倚靠區域大小、引用資料區域大小。(3)載入錄製視頻文字腳本... ...
  • 前言 .NET 官方有一個用來管理國際化資源的擴展包Microsoft.Extensions.Localization,ASP.NET Core也用這個來實現國際化功能。但是這個包的翻譯數據是使用resx資源文件來管理的,這就意味著無法動態管理。雖然官方有在文檔中提供了一些第三方管理方案,但是都不太 ...
  • 在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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...