WPF自定義控制項

来源:http://www.cnblogs.com/s0611163/archive/2017/09/22/7573774.html
-Advertisement-
Play Games

封裝了一個選擇年月的控制項,XAML代碼: <UserControl x:Class="SunCreate.CombatPlatform.Client.DateMonthPicker" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presen ...


封裝了一個選擇年月的控制項,XAML代碼:

<UserControl x:Class="SunCreate.CombatPlatform.Client.DateMonthPicker"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Height="23" Loaded="UserControl_Loaded">
    <UserControl.Resources>
        <ResourceDictionary>
            <ResourceDictionary.MergedDictionaries>
                <ResourceDictionary Source="/SunCreate.CombatPlatform.Client.Resources;Component/Resource/DateTimePickerResource.xaml" />
            </ResourceDictionary.MergedDictionaries>
            <Style TargetType="ToggleButton" x:Key="stlToggleButton">
                <Setter Property="Foreground" Value="White"></Setter>
                <Setter Property="Template">
                    <Setter.Value>
                        <ControlTemplate>
                            <Border x:Name="Back" Background="Transparent" BorderThickness="0" BorderBrush="Transparent">
                                <Path Name="PathFill" Fill="#1b94e0" Width="8" Height="6" StrokeThickness="0" Data="M5,0 L10,10 L0,10 z" RenderTransformOrigin="0.5,0.5" Stretch="Fill">
                                    <Path.RenderTransform>
                                        <TransformGroup>
                                            <ScaleTransform/>
                                            <SkewTransform/>
                                            <RotateTransform Angle="180"/>
                                            <TranslateTransform/>
                                        </TransformGroup>
                                    </Path.RenderTransform>
                                </Path>
                            </Border>
                            <ControlTemplate.Triggers>
                                <Trigger Property="IsMouseOver" Value="True">
                                    <Setter TargetName="PathFill" Property="Fill" Value="#1b94e0"></Setter>
                                    <Setter TargetName="Back" Property="Background" Value="Transparent"></Setter>
                                    <Setter TargetName="Back" Property="BorderBrush" Value="Transparent"></Setter>
                                </Trigger>
                            </ControlTemplate.Triggers>
                        </ControlTemplate>
                    </Setter.Value>
                </Setter>
            </Style>
            <Style TargetType="ComboBox" x:Key="stlComboBox">
                <Setter Property="SnapsToDevicePixels" Value="True"/>
                <Setter Property="ScrollViewer.HorizontalScrollBarVisibility" Value="Auto"/>
                <Setter Property="ScrollViewer.VerticalScrollBarVisibility" Value="Auto"/>
                <Setter Property="ScrollViewer.CanContentScroll" Value="True"/>
                <Setter Property="HorizontalAlignment" Value="Left"></Setter>
                <Setter Property="Foreground" Value="Black"></Setter>
                <Setter Property="Height" Value="30"></Setter>
                <Setter Property="Margin" Value="0,0,0,0"></Setter>
                <Setter Property="Template">
                    <Setter.Value>
                        <ControlTemplate TargetType="ComboBox">
                            <Grid>
                                <Grid.Background>
                                    <ImageBrush ImageSource="/SunCreate.CombatPlatform.Client.Resources;component/Image/Face/1比n人臉比對/輸入框.png"/>
                                </Grid.Background>
                                <Grid.ColumnDefinitions>
                                    <ColumnDefinition Width="0.7*"/>
                                    <ColumnDefinition Width="0.3*" MaxWidth="30" MinWidth="18"/>
                                </Grid.ColumnDefinitions>
                                <TextBox  Grid.Column="0" IsReadOnly="True" Foreground="#1ba4f6" BorderThickness="1" BorderBrush="Transparent"  Text="{TemplateBinding Text}" Background="Transparent"></TextBox>
                                <Border  Grid.Column="0" BorderThickness="0" Background="Transparent">
                                </Border>
                                <Border Grid.Column="1" BorderThickness="0" CornerRadius="0,1,1,0" Background="Transparent">
                                    <ToggleButton Style="{StaticResource stlToggleButton}" IsChecked="{Binding Path=IsDropDownOpen, Mode=TwoWay, RelativeSource={RelativeSource TemplatedParent}}" ClickMode="Press"></ToggleButton>
                                </Border>
                                <Popup IsOpen="{TemplateBinding IsDropDownOpen}" Placement="Bottom" x:Name="Popup" Focusable="False" AllowsTransparency="True" PopupAnimation="Slide">
                                    <Border CornerRadius="1" MaxHeight="{TemplateBinding MaxDropDownHeight}" MinWidth="{TemplateBinding ActualWidth}" x:Name="DropDown" SnapsToDevicePixels="True" Background="Transparent">
                                        <Border.Effect>
                                            <DropShadowEffect Color="#1ba4f6" BlurRadius="2" ShadowDepth="0" Opacity="0.5"/>
                                        </Border.Effect>
                                        <ScrollViewer Margin="4,6,4,6" Style="{DynamicResource ScrollViewerStyle}" MaxHeight="{TemplateBinding MaxDropDownHeight}" SnapsToDevicePixels="True" HorizontalScrollBarVisibility="Auto" VerticalScrollBarVisibility="Auto" CanContentScroll="True">
                                            <!-- StackPanel 用於顯示子級,方法是將 IsItemsHost 設置為 True -->
                                            <StackPanel IsItemsHost="True" KeyboardNavigation.DirectionalNavigation="Contained" Background="#1ba4f6"/>
                                        </ScrollViewer>
                                    </Border>
                                </Popup>
                            </Grid>
                        </ControlTemplate>
                    </Setter.Value>
                </Setter>
            </Style>
        </ResourceDictionary>
    </UserControl.Resources>
    <Grid>
        <StackPanel Orientation="Horizontal">
            <ComboBox Grid.Column ="2" Grid.Row="0" Name="cbYear" SelectionChanged="cbYear_SelectionChanged"  SelectedValuePath="Text" DisplayMemberPath="Text" Height="25" Width="55" Style="{StaticResource stlComboBox}" VerticalAlignment ="Center"  >
            </ComboBox>
            <TextBlock Text="年" Margin="5 0 5 0" VerticalAlignment="Center" Foreground="#1ba4f6" />
            <ComboBox Grid.Column ="2" Grid.Row="0" Name="cbMonth" SelectionChanged="cbMonth_SelectionChanged" SelectedValuePath="Text" DisplayMemberPath="Text" Height="25" Width="40" Style="{StaticResource stlComboBox}" VerticalAlignment ="Center" >
            </ComboBox>
            <TextBlock Text="月" Margin="5 0 5 0" VerticalAlignment="Center" Foreground="#1ba4f6" />
        </StackPanel>
    </Grid>
</UserControl>
View Code

後臺代碼:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
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;
using System.ComponentModel;

namespace SunCreate.CombatPlatform.Client
{
    /// <summary>
    /// 
    /// </summary>
    public partial class DateMonthPicker : UserControl, INotifyPropertyChanged
    {
        private DateTime _selectedMonth;
        public static DependencyProperty selectedTimeProperty;

        static DateMonthPicker()
        {
            selectedTimeProperty = DependencyProperty.Register("SelectedMonth", typeof(DateTime), typeof(DateMonthPicker), new PropertyMetadata(DateTime.Now, new PropertyChangedCallback(SelectedMonthChanged)));
        }

        public DateMonthPicker()
        {
            InitializeComponent();

            int currentYear = DateTime.Now.Year;
            int currentMonth = DateTime.Now.Month;
            List<object> yearList = new List<object>();
            for (int i = currentYear - 20; i <= currentYear; i++)
            {
                yearList.Add(new { Text = i.ToString() });
            }
            cbYear.ItemsSource = yearList;

            cbMonth.ItemsSource = new List<object>() { 
                new { Text = "1" },
                new { Text = "2" },
                new { Text = "3" },
                new { Text = "4" },
                new { Text = "5" },
                new { Text = "6" },
                new { Text = "7" },
                new { Text = "8" },
                new { Text = "9" },
                new { Text = "10" },
                new { Text = "11" },
                new { Text = "12" }};

            this._selectedMonth = DateTime.Now;
        }

        private void UserControl_Loaded(object sender, RoutedEventArgs e)
        {
            cbYear.SelectedValue = _selectedMonth.Year.ToString();
            cbMonth.SelectedValue = _selectedMonth.Month.ToString();
        }

        private static void SelectedMonthChanged(DependencyObject obj, DependencyPropertyChangedEventArgs e)
        {
            (obj as DateMonthPicker).ChangeSelect(e.NewValue);
        }

        private void ChangeSelect(object value)
        {
            _selectedMonth = (DateTime)value;
            cbYear.SelectedValue = _selectedMonth.Year.ToString();
            cbMonth.SelectedValue = _selectedMonth.Month.ToString();
        }

        public DateTime SelectedMonth
        {
            get { return (DateTime)this.GetValue(DateMonthPicker.selectedTimeProperty); }
            set { this.SetValue(DateMonthPicker.selectedTimeProperty, value); }
        }

        public DateTime StartDay
        {
            get
            {
                return this._selectedMonth.AddDays(1 - this._selectedMonth.Day).Date;
            }
        }

        public DateTime EndDay
        {
            get
            {
                return this.StartDay.AddMonths(1).AddDays(-1);
            }
        }

        #region INotifyPropertyChanged 成員
        public event PropertyChangedEventHandler PropertyChanged;
        private void SendPropertyChanged(String propertyName)
        {
            if (PropertyChanged != null)
                this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
        }
        #endregion

        private void cbYear_SelectionChanged(object sender, SelectionChangedEventArgs e)
        {
            ComboBox cb = sender as ComboBox;
            if (this._selectedMonth != DateTime.MinValue && cb.SelectedValue != null)
            {
                this._selectedMonth = new DateTime(Convert.ToInt32(cb.SelectedValue), this._selectedMonth.Month, 1);
                SelectedMonth = this._selectedMonth;
            }
        }

        private void cbMonth_SelectionChanged(object sender, SelectionChangedEventArgs e)
        {
            ComboBox cb = sender as ComboBox;
            if (this._selectedMonth != DateTime.MinValue && cb.SelectedValue != null)
            {
                this._selectedMonth = new DateTime(this._selectedMonth.Year, Convert.ToInt32(cb.SelectedValue), 1);
                SelectedMonth = this._selectedMonth;
            }
        }
    }
}
View Code

效果圖:

 


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

-Advertisement-
Play Games
更多相關文章
  • 第1章 linux文件屬性相關 1.1 linux文件屬性 1.2 磁碟的使用過程 1、磁碟(房子) 2、分區(劃分隔斷) 3、格式化創建文件系統(裝修) 4、掛載(安裝門窗) 5、存放文件(住人) 1、磁碟(房子) 2、分區(劃分隔斷) 3、格式化創建文件系統(裝修) 4、掛載(安裝門窗) 5、存 ...
  • 前言 1.為什麼要建域 工作組的分散管理模式不適合大型的網路環境下工作,域模式就是針對大型的網路管理需求設計的,就是共用用戶賬號,電腦賬號和安全策略的電腦集合。域中集中存儲用戶賬號的電腦就是域控器,域中用戶賬號, 電腦賬號和安全策略被存儲在域控制器上一個名為Active Directory的 ...
  • /// /// 獲取功能變數名稱的頂級功能變數名稱 /// /// /// public static string GetTopDomainName(string domain) { //https://www.safsd.asdfasdf.baidu.com.cn/ssssd... ...
  • 為什麼不用FiddlerCore? 說到FiddlerCore大家可能會比較陌生,那麼它哥Fiddler就比較熟悉了;抓包、模擬低帶寬、修改請求我平時比較常用。Fiddler的本質就是一個HTTP代理伺服器。 FiddlerCore是Fiddler去除了UI的核心組件,可以用於二次開發。如下圖所示: ...
  • 我在別的網站上下載了一個mp4格式的視頻,加到video標簽里可以正常播放, 然後我用FLV自己轉成mp4,卻提示不支持的格式和mine類型, 後來找到一篇文章 http://jingyan.baidu.com/article/49711c617a940cfa441b7cc6.html 發現了一個關 ...
  • 對非同步CTP感興趣有很多原因。非同步CTP使非同步編程比以前更加容易了。它雖然沒有Rx強大,但是更容易學。非同步CTP介紹了兩個新的關鍵字,async和await。非同步方法(或Lambda表達式)必須返回void,Task或Task<TResult>。這篇文章不是介紹非同步CTP的,因為網上有很多這樣的文章 ...
  • 關於Visio Studio 2012使用Nuget獲取Sqlite驅動包報錯:“System.Data.SQLite.EF6”的架構版本與 NuGet 的版本 2.0.30625.9003 不相容 ...
  • 1、IIS(Internet Information Services)網站本機可以訪問,區域網其他機器無法訪問 導致這個問題之一是防火牆規則,解決辦法如下: 【開始】打開【控制面板】,選擇【WINDOWS 防火牆】,進入 在防火牆界面,選擇左側邊欄的【高級設置】 在彈出的高級安全Windows防火 ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...