WPF實現特殊統計圖

来源:https://www.cnblogs.com/s0611163/archive/2019/04/12/10694380.html
-Advertisement-
Play Games

效果圖: ActiveFunItem.xaml代碼: <UserControl x:Class="SunCreate.Vipf.Client.UI.ActiveFunItem" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentat ...


效果圖:

 

ActiveFunItem.xaml代碼:

<UserControl x:Class="SunCreate.Vipf.Client.UI.ActiveFunItem"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
             mc:Ignorable="d" 
             d:DesignHeight="74" d:DesignWidth="50">
    <Grid>
        <Grid.RowDefinitions>
            <RowDefinition Height="{Binding ItemWidth}"></RowDefinition>
            <RowDefinition Height="24"></RowDefinition>
        </Grid.RowDefinitions>
        <Border Width="{Binding ItemWidth}" Height="{Binding ItemWidth}" Background="{Binding FillColor}" BorderBrush="{Binding BorderColor}" BorderThickness="2" CornerRadius="{Binding ItemWidthHalf}" >
            <Border.ToolTip>
                <ToolTip>
                    <ToolTip.Template>
                        <ControlTemplate>
                            <Border Background="#88333333" CornerRadius="4">
                                <TextBlock Margin="5" Foreground="#f2f2f2" Text="{Binding FunName}"></TextBlock>
                            </Border>
                        </ControlTemplate>
                    </ToolTip.Template>
                </ToolTip>
            </Border.ToolTip>
            <Image Width="{Binding IconWidth}" Height="{Binding IconWidth}" Stretch="Fill" Source="{Binding Image}" VerticalAlignment="Center" HorizontalAlignment="Center"></Image>
        </Border>
        <StackPanel Grid.Row="1" Orientation="Horizontal" HorizontalAlignment="Center">
            <TextBlock Text="{Binding Count}" Foreground="#008bf1" FontSize="20" VerticalAlignment="Center"></TextBlock>
            <TextBlock Text="次" Foreground="#008bf1" FontSize="20" VerticalAlignment="Center"></TextBlock>
        </StackPanel>
    </Grid>
</UserControl>
View Code

ActiveFunItem.xaml.cs代碼:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;

namespace SunCreate.Vipf.Client.UI
{
    /// <summary>
    /// 圖標控制項
    /// </summary>
    public partial class ActiveFunItem : UserControl, INotifyPropertyChanged
    {
        private Thickness _OriginalMargin;
        /// <summary>
        /// 初始Margin
        /// </summary>
        public Thickness OriginalMargin
        {
            get
            {
                return _OriginalMargin;
            }
            set
            {
                _OriginalMargin = value;
                OnPropertyChanged("OriginalMargin");
            }
        }

        private int _ItemWidth = 50;
        /// <summary>
        /// 圓寬度
        /// </summary>
        public int ItemWidth
        {
            get
            {
                return _ItemWidth;
            }
            set
            {
                _ItemWidth = value;
                OnPropertyChanged("ItemWidth");

                ItemWidthHalf = ItemWidth / 2;
                IconWidth = (int)(ItemWidth * 0.65);
            }
        }

        private int _ItemWidthHalf = 25;
        /// <summary>
        /// 圓寬度一半
        /// </summary>
        public int ItemWidthHalf
        {
            get
            {
                return _ItemWidthHalf;
            }
            set
            {
                _ItemWidthHalf = value;
                OnPropertyChanged("ItemWidthHalf");
            }
        }

        private int _IconWidth = 30;
        /// <summary>
        /// 圖標寬度
        /// </summary>
        public int IconWidth
        {
            get
            {
                return _IconWidth;
            }
            set
            {
                _IconWidth = value;
                OnPropertyChanged("IconWidth");
            }
        }

        private SolidColorBrush _FillColor = new SolidColorBrush((Color)ColorConverter.ConvertFromString("#ff9848"));
        /// <summary>
        /// 填充顏色
        /// </summary>
        public SolidColorBrush FillColor
        {
            get
            {
                return _FillColor;
            }
            set
            {
                _FillColor = value;
                OnPropertyChanged("FillColor");
            }
        }

        private SolidColorBrush _BorderColor = new SolidColorBrush((Color)ColorConverter.ConvertFromString("#ed6900"));
        /// <summary>
        /// 邊框顏色
        /// </summary>
        public SolidColorBrush BorderColor
        {
            get
            {
                return _BorderColor;
            }
            set
            {
                _BorderColor = value;
                OnPropertyChanged("BorderColor");
            }
        }

        private ImageSource _Image = new BitmapImage(new Uri("/SunCreate.Vipf.Client.Resources;component/Image/_ZZ/ManagerMainPage/活躍功能-人臉分析.png", UriKind.RelativeOrAbsolute));
        /// <summary>
        /// 圖標的圖片
        /// </summary>
        public ImageSource Image
        {
            get { return _Image; }
            set
            {
                _Image = value;
                OnPropertyChanged("Image");
            }
        }

        private int _Count = 3600;
        /// <summary>
        /// 活躍次數
        /// </summary>
        public int Count
        {
            get
            {
                return _Count;
            }
            set
            {
                _Count = value;
                OnPropertyChanged("Count");
            }
        }

        private string _FunName;
        /// <summary>
        /// 功能名稱
        /// </summary>
        public string FunName
        {
            get
            {
                return _FunName;
            }
            set
            {
                _FunName = value;
                OnPropertyChanged("FunName");
            }
        }

        public ActiveFunItem()
        {
            InitializeComponent();
            this.DataContext = this;
        }

        #region INotifyPropertyChanged介面
        public event PropertyChangedEventHandler PropertyChanged;

        protected void OnPropertyChanged(string name)
        {
            if (PropertyChanged != null)
            {
                PropertyChanged(this, new PropertyChangedEventArgs(name));
            }
        }
        #endregion

    }
}
View Code

ActiveFunction.xaml代碼:

<UserControl x:Class="SunCreate.Vipf.Client.UI.ActiveFunction"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
             xmlns:local="clr-namespace:SunCreate.Vipf.Client.UI"
             mc:Ignorable="d" 
             d:DesignHeight="300" d:DesignWidth="300" Loaded="UserControl_Loaded">
    <Grid>
        <Grid.RowDefinitions>
            <RowDefinition Height="30"></RowDefinition>
            <RowDefinition Height="1*"></RowDefinition>
        </Grid.RowDefinitions>
        <Border CornerRadius="5 5 0 0" Background="#368bf0">
            <StackPanel Orientation="Horizontal" Margin="10 0 0 0">
                <Image Width="14" Source="/SunCreate.Vipf.Client.Resources;component/Image/_ZZ/ManagerMainPage/面板-活躍功能.png"></Image>
                <TextBlock Margin="10 0 0 0" Text="活躍功能" FontSize="14" Foreground="#fff" VerticalAlignment="Center"></TextBlock>
            </StackPanel>
        </Border>
        <Border Grid.Row="1" CornerRadius="0 0 5 5" Background="#ffffff" BorderThickness="1 0 1 1" BorderBrush="#dddddd" SnapsToDevicePixels="True">
            <Grid>
                <Viewbox x:Name="viewbox" Stretch="Fill" Height="260" Width="260">
                    <Canvas Width="320" Height="320">
                        <Grid>
                            <Grid Width="300" Height="300">
                                <Grid.Background>
                                    <ImageBrush Stretch="Fill" ImageSource="/SunCreate.Vipf.Client.Resources;component/Image/_ZZ/ManagerMainPage/活躍總量.png"/>
                                </Grid.Background>
                            </Grid>
                            <Grid x:Name="container" Width="320" Height="320">
                                <local:ActiveFunItem VerticalAlignment="Top" HorizontalAlignment="Left" Margin="76,20,0,0"></local:ActiveFunItem>
                                <local:ActiveFunItem VerticalAlignment="Top" HorizontalAlignment="Left" Margin="173,20,0,0"></local:ActiveFunItem>
                                <local:ActiveFunItem VerticalAlignment="Top" HorizontalAlignment="Left" Margin="240,79,0,0"></local:ActiveFunItem>
                                <local:ActiveFunItem VerticalAlignment="Top" HorizontalAlignment="Left" Margin="241,182,0,0"></local:ActiveFunItem>
                                <local:ActiveFunItem VerticalAlignment="Top" HorizontalAlignment="Left" Margin="171,247,0,0"></local:ActiveFunItem>
                                <local:ActiveFunItem VerticalAlignment="Top" HorizontalAlignment="Left" Margin="75,247,0,0"></local:ActiveFunItem>
                                <local:ActiveFunItem VerticalAlignment="Top" HorizontalAlignment="Left" Margin="11,178,0,0"></local:ActiveFunItem>
                                <local:ActiveFunItem VerticalAlignment="Top" HorizontalAlignment="Left" Margin="12,82,0,0"></local:ActiveFunItem>
                            </Grid>
                            <TextBlock Text="{Binding Count}" FontSize="30" FontWeight="Bold" Foreground="#ff2121" VerticalAlignment="Center" HorizontalAlignment="Center"></TextBlock>
                        </Grid>
                    </Canvas>
                </Viewbox>
            </Grid>
        </Border>
    </Grid>
</UserControl>
View Code

ActiveFunction.xaml.cs代碼:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;

namespace SunCreate.Vipf.Client.UI
{
    /// <summary>
    /// 活躍功能
    /// </summary>
    public partial class ActiveFunction : UserControl, INotifyPropertyChanged
    {
        #region 欄位屬性
        /// <summary>
        /// 圖標控制項集合
        /// </summary>
        private List<ActiveFunItem> _list = new List<ActiveFunItem>();

        /// <summary>
        /// 圖標背景顏色
        /// </summary>
        private SolidColorBrush[] _fillColorArr = new SolidColorBrush[8] {
            new SolidColorBrush((Color)ColorConverter.ConvertFromString("#ff9848")),
            new SolidColorBrush((Color)ColorConverter.ConvertFromString("#009df0")),
            new SolidColorBrush((Color)ColorConverter.ConvertFromString("#009df0")),
            new SolidColorBrush((Color)ColorConverter.ConvertFromString("#ff211b")),
            new SolidColorBrush((Color)ColorConverter.ConvertFromString("#009df0")),
            new SolidColorBrush((Color)ColorConverter.ConvertFromString("#009df0")),
            new SolidColorBrush((Color)ColorConverter.ConvertFromString("#00d235")),
            new SolidColorBrush((Color)ColorConverter.ConvertFromString("#009df0"))
        };

        /// <summary>
        /// 圖標背景邊框顏色
        /// </summary>
        private SolidColorBrush[] _borderColorArr = new SolidColorBrush[8] {
            new SolidColorBrush((Color)ColorConverter.ConvertFromString("#ed6900")),
            new SolidColorBrush((Color)ColorConverter.ConvertFromString("#0065d1")),
            new SolidColorBrush((Color)ColorConverter.ConvertFromString("#0065d1")),
            new SolidColorBrush((Color)ColorConverter.ConvertFromString("#b40000")),
            new SolidColorBrush((Color)ColorConverter.ConvertFromString("#0065d1")),
            new SolidColorBrush((Color)ColorConverter.ConvertFromString("#0065d1")),
            new SolidColorBrush((Color)ColorConverter.ConvertFromString("#00912b")),
            new SolidColorBrush((Color)ColorConverter.ConvertFromString("#0065d1"))
        };

        /// <summary>
        /// 圖標大小
        /// </summary>
        private int[] _widthArr = new int[8] {
            90,
            80,
            70,
            60,
            55,
            50,
            45,
            40
        };

        /// <summary>
        /// 位置數組
        /// </summary>
        private int[] _posArr = new int[8] {
            3,
            0,
            6,
            2,
            7,
            4,
            1,
            5
        };

        /// <summary>
        /// 功能名稱圖標集合
        /// </summary>
        private Dictionary<string, ImageSource> _dictNameIcon = new Dictionary<string, ImageSource>();

        private int _Count;
        /// <summary>
        /// 活躍總量
        /// </summary>
        public int Count
        {
            get
            {
                return _Count;
            }
            set
            {
                _Count = value;
                OnPropertyChanged("Count");
            }
        }
        #endregion

        public ActiveFunction()
        {
            InitializeComponent();
            this.DataContext = this;

            this.Count = 21834; //活躍總量

            #region 功能名稱圖標集合(後期補充更多功能名稱圖標)
            _dictNameIcon.Add("車輛分析", new BitmapImage(new Uri("/SunCreate.Vipf.Client.Resources;component/Image/_ZZ/ManagerMainPage/活躍功能-車輛分析.png", UriKind.RelativeOrAbsolute)));
            _dictNameIcon.Add("行為分析", new BitmapImage(new Uri("/SunCreate.Vipf.Client.Resources;component/Image/_ZZ/ManagerMainPage/活躍功能-行為分析.png", UriKind.RelativeOrAbsolute)));
            _dictNameIcon.Add("結構化分析", new BitmapImage(new Uri("/SunCreate.Vipf.Client.Resources;component/Image/_ZZ/ManagerMainPage/活躍功能-結構化分析.png", UriKind.RelativeOrAbsolute)));
            _dictNameIcon.Add("歷史視頻", new BitmapImage(new Uri("/SunCreate.Vipf.Client.Resources;component/Image/_ZZ/ManagerMainPage/活躍功能-歷史視頻.png", UriKind.RelativeOrAbsolute)));
            _dictNameIcon.Add("人臉分析", new BitmapImage(new Uri("/SunCreate.Vipf.Client.Resources;component/Image/_ZZ/ManagerMainPage/活躍功能-人臉分析.png", UriKind.RelativeOrAbsolute)));
            _dictNameIcon.Add("實時視頻", new BitmapImage(new Uri("/SunCreate.Vipf.Client.Resources;component/Image/_ZZ/ManagerMainPage/活躍功能-實時視頻.png", UriKind.RelativeOrAbsolute)));
            _dictNameIcon.Add("視頻巡查", new BitmapImage(new Uri("/SunCreate.Vipf.Client.Resources;component/Image/_ZZ/ManagerMainPage/活躍功能-視頻巡查.png", UriKind.RelativeOrAbsolute)));
            _dictNameIcon.Add("資源申請", new BitmapImage(new Uri("/SunCreate.Vipf.Client.Resources;component/Image/_ZZ/ManagerMainPage/活躍功能-資源申請.png", UriKind.RelativeOrAbsolute)));
            #endregion

            #region 初始化控制項
            int i = 0;
            foreach (ActiveFunItem item in container.Children)
            {
                item.OriginalMargin = new Thickness(item.Margin.Left + 25, item.Margin.Top + 25, 0, 0);
                item.FillColor = _fillColorArr[i];
                item.BorderColor = _borderColorArr[i];
                _list.Add(item);
                i++;
            }
            #endregion

            Statistic();

        }

        #region 統計
        /// <summary>
        /// 統計
        /// </summary>
        public void Statistic()
        {
            #region 活躍功能活躍次數測試數據
            Dictionary<string, int> dict = new Dictionary<string, int>();
            dict.Add("人臉分析", 1223);
            dict.Add("行為分析", 239);
            dict.Add("結構化分析", 621);
            dict.Add("歷史視頻", 1520);
            dict.Add("實時視頻", 523);
            dict.Add("車輛分析", 805);
            dict.Add("視頻巡查", 89);
            dict.Add("資源申請", 363);
            #endregion

            #region 重新計算ActiveFunItem屬性
            List<KeyValuePair<string, int>> _sortedList = dict.ToList();
            _sortedList.Sort((a, b) => b.Value - a.Value); //對統計數據排序

            for (int k = 0; k < _sortedList.Count; k++)
            {
                KeyValuePair<string, int> keyValuePair = _sortedList[k];
                int index = _posArr[k];

                ActiveFunItem funItem = _list[index];
                funItem.ItemWidth = _widthArr[k];
                funItem.Margin = new Thickness(funItem.OriginalMargin.Left - funItem.ItemWidthHalf, funItem.Origi

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

-Advertisement-
Play Games
更多相關文章
  • //通過ClassName獲取div,使用setAttribute設置div禁止點擊 pointer-events: none;是css3新出現的屬性,意思就是禁止滑鼠點擊事件,當元素中有這一屬性時,鏈接、點擊事件統統失效 ...
  • 通過註解(特性)的方式進行對象的註冊與註入,方便,靈活! 本篇主要講如何去實現,下一篇主要講如何把它集成到mvc和api環境里,實現自動的註入! spring ioc工作的過程大致為,統一的註冊組件,攔截當前請求,統一的註入當前請求所需要的組件,事實上,說到這事,.net也完全可以實現這個功能和工作 ...
  • 看這個方案之前,先說明下為什麼要加入SSO,以防對大家產生不好的影響。我們產品使用傳統winform+db服務+Db存儲方式開發,一群老菜幫子開發,以傳統的datatble做數據傳遞,很多年了未有變化。 然後我來了,感覺我這個老菜幫子都受不了這種開發,然後下定決心,作了一些封裝,看起來有點像orm的 ...
  • 對於使用Windows操作系統的人來說,Windows Service(Windows服務)應該不會陌生。在Windows操作系統中,我們可以在”運行”視窗中運行service.msc,即可打開一個查看Windows服務的視窗。Windows服務基本都是一些後臺運行的服務進程,沒有UI界面,每個服務... ...
  • VS2010中有一個自帶的安裝部署項目,叫:Visual Studio Installer ,我們通常稱為:setup項目,是一個用於自定義安裝部署的項目方案。但是在VS2017,VS2019中均不見了,安裝程式組件中也沒有,通過強大的谷歌和百度,發現有一個擴展方案,在VS市場里有一個可用的VS擴展 ...
  • MVC記住賬號密碼 使用cookie操作 前端: JS代碼: 通過AJAX 傳輸數據 我們不僅要傳輸賬號和密碼 還有傳覆選框的狀態(參數CK) 在登錄的方法中: CK參數就是覆選框的狀態true或false 首先判斷資料庫中是否存在賬號密碼 之後判斷覆選框是否選中 選中: 創建一個cookie對象 ...
  • 在我們做客戶關係管理系統的Winform界面的時候,需要對進展階段這個屬性進行一個方便的動態切換和標記處理,如我們根據不同的進展階段顯示不同的相關信息,也可以隨時保存當前的階段信息。其實也是一個比較常見的功能,我們可以把字典列表扁平化動態展示在控制項上,然後根據用戶選擇的階段位置進行切換即可,本篇隨筆... ...
  • DirectoryInfo dir = new DirectoryInfo(AppContext.BaseDirectory); var path = dir.FullName + @"tempFile\"; var filePath = path + Guid.NewGuid() + fileNa... ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...