<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
無論是在WPF中還是WinForm中,都有使用者控制元件(UserControl)和自定義控制元件(CustomControl),這兩種控制元件都是對已有控制元件的封裝,實現功能重用。但是兩者還是有一些區別,本文對這兩種控制元件進行講解。
1.使用者控制元件
2.自定義控制元件
使用者控制元件比較容易理解,與常見的WPF表單類似,值得注意一點的地方是內部在使用繫結的時候,需要使用RelativeSource
的方式來繫結,以實現良好的封裝。一個簡單的案例:
定義使用者控制元件
<UserControl x:Class="WpfApp19.UserControl1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:local="clr-namespace:WpfApp19" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" d:DesignHeight="450" d:DesignWidth="800" mc:Ignorable="d"> <Grid> <!--下面繫結都要用RelativeSource作為源--> <StackPanel> <TextBox Width="100" BorderThickness="2" Text="{Binding value, RelativeSource={RelativeSource AncestorType=UserControl}}" /> <Button Width="100" Command="{Binding Command, RelativeSource={RelativeSource AncestorType=UserControl}}" Content="Ok" /> </StackPanel> </Grid> </UserControl>
後臺程式碼
//根據需要定義依賴屬性 //所需要繫結的值 public int value { get { return (int)GetValue(valueProperty); } set { SetValue(valueProperty, value); } } public static readonly DependencyProperty valueProperty = DependencyProperty.Register("value", typeof(int), typeof(UserControl1), new PropertyMetadata(0)); //所需要繫結的命令 public ICommand Command { get { return (ICommand)GetValue(CommandProperty); } set { SetValue(CommandProperty, value); } } public static readonly DependencyProperty CommandProperty = DependencyProperty.Register("Command", typeof(ICommand), typeof(UserControl1), new PropertyMetadata(default(ICommand))); //所需要繫結的命令引數 public object CommandParemeter { get { return (object)GetValue(CommandParemeterProperty); } set { SetValue(CommandParemeterProperty, value); } } public static readonly DependencyProperty CommandParemeterProperty = DependencyProperty.Register("CommandParemeter", typeof(object), typeof(UserControl1), new PropertyMetadata(0));
使用使用者控制元件
<Window x:Class="WpfApp19.MainWindow" ... xmlns:local="clr-namespace:WpfApp19" Title="MainWindow" Height="450" Width="800"> <Grid> <local:UserControl1 value="{Binding }" Command="{Binding }"/> </Grid> </Window>
點選新增自定義控制元件後,會增加一個CustomControl1.cs
檔案以及一個Themes
目錄,在該目錄下有一個Generic.xaml
檔案,該檔案就是自定義控制元件的style。我們經常針對某些控制元件進行編輯模板-建立副本的操作而產生的style,其實就是Generic.xaml中定義的style。另外,有時我們可能遇到一種情況,也就是相同的軟體在不同的Windows版本下執行,表現形式可能會不同,甚至某些系統下執行不了,這就是和不同系統下的預設的Theme不同。其實wpf控制元件找不到自定義的樣式時,會從系統獲取樣式,查詢順序是,先查詢所在的程式集,如果程式集定義了ThemeInfo
特性,那麼會檢視ThemeInfoDictionaryLocation
的屬性值,該屬性如果是None
則說明沒有特定的主題資源,值為SourceAssembly
,說明特定資源定義在程式集內部,值為ExternalAssembly
則說明在外部,如果還是沒有找到,則程式會在自身的themes/generic.xaml
中獲取,在generic.xaml
中獲取的其實就和系統預設樣式相關。
不同xaml所對應的系統主題
C#檔案
public class Switch : ToggleButton { static Switch() { //通過重寫Metadata,控制元件就會通過程式集themes資料夾下的generic.xaml來尋找系統預設樣式 DefaultStyleKeyProperty.OverrideMetadata(typeof(Switch), new FrameworkPropertyMetadata(typeof(Switch))); } }
Themes資料夾下的Generic.xaml檔案
注意在該檔案中不能有中文,註釋也不行
<Style TargetType="{x:Type local:Switch}"> <Setter Property="Template"> <Setter.Value> <ControlTemplate TargetType="{x:Type local:Switch}"> <Grid> <Border Name="dropdown" Width="{Binding RelativeSource={RelativeSource Self}, Path=ActualHeight}" Margin="-23" CornerRadius="{Binding RelativeSource={RelativeSource Self}, Path=ActualHeight}" Visibility="Collapsed"> <Border.Background> <RadialGradientBrush> <GradientStop Offset="1" Color="Transparent" /> <GradientStop Offset="0.7" Color="#5500D787" /> <GradientStop Offset="0.59" Color="Transparent" /> </RadialGradientBrush> </Border.Background> </Border> <Border Name="bor" Width="{Binding RelativeSource={RelativeSource Self}, Path=ActualHeight}" Background="Gray" BorderBrush="DarkGreen" BorderThickness="5" CornerRadius="{Binding RelativeSource={RelativeSource Self}, Path=ActualHeight}"> <Border Name="bor1" Width="{Binding RelativeSource={RelativeSource Self}, Path=ActualHeight}" Margin="2" Background="#FF00C88C" CornerRadius="{Binding RelativeSource={RelativeSource Self}, Path=ActualHeight}" /> </Border> </Grid> <ControlTemplate.Triggers> <Trigger Property="IsChecked" Value="True"> <Trigger.EnterActions> <BeginStoryboard> <Storyboard> <ColorAnimation Storyboard.TargetName="bor1" Storyboard.TargetProperty="Background.Color" To="White" Duration="0:0:0.5" /> <ColorAnimation Storyboard.TargetName="bor" Storyboard.TargetProperty="BorderBrush.Color" To="#FF32FAC8" Duration="0:0:0.5" /> <ObjectAnimationUsingKeyFrames Storyboard.TargetName="dropdown" Storyboard.TargetProperty="Visibil <DiscreteObjectKeyFrame KeyTime="0:0:0.3"> <DiscreteObjectKeyFrame.Value> <Visibility>Visible</Visibility> </DiscreteObjectKeyFrame.Value> </DiscreteObjectKeyFrame> </ObjectAnimationUsingKeyFrames> </Storyboard> </BeginStoryboard> </Trigger.EnterActions> <Trigger.ExitActions> <BeginStoryboard> <Storyboard> <ColorAnimation Storyboard.TargetName="bor1" Storyboard.TargetProperty="Background.Color" /> <ColorAnimation Storyboard.TargetName="bor" Storyboard.TargetProperty="BorderBrush.Color" /> <ObjectAnimationUsingKeyFrames Storyboard.TargetName="dropdown" Storyboard.TargetProperty="Visibil <DiscreteObjectKeyFrame KeyTime="0:0:0.3"> <DiscreteObjectKeyFrame.Value> <Visibility>Collapsed</Visibility> </DiscreteObjectKeyFrame.Value> </DiscreteObjectKeyFrame> </ObjectAnimationUsingKeyFrames> </Storyboard> </BeginStoryboard> </Trigger.ExitActions> </Trigger> </ControlTemplate.Triggers> </ControlTemplate> </Setter.Value> </Setter> </Style>
使用自定控制元件
<Grid> <local:Switch Width="100" Height="100" /> </Grid>
TemplatePart特性
在自定義控制元件中,有些控制元件是需要有名稱的以便於呼叫,如在重寫的OnApplyTemplate()方法中得到指定的button。這就要求使用者在使用控制元件時,不能夠修改模板中的名稱。
//應用該控制元件時呼叫 public override void OnApplyTemplate() { UpButtonElement = GetTemplateChild("UpButton") as RepeatButton; DownButtonElement = GetTemplateChild("DownButton") as RepeatButton; }
所以在類前面使用特性進行標註
[TemplatePart(Name = "UpButton", Type = typeof(RepeatButton))] [TemplatePart(Name = "DownButton", Type = typeof(RepeatButton))] public class Numeric : Control{}
視覺狀態的定義與呼叫
自定義控制元件中可以定義視覺狀態來呈現不同狀態下的效果。
在xml中定義視覺狀態,不同組下的視覺狀態是互斥的
<VisualStateManager.VisualStateGroups> <VisualStateGroup Name="FocusStates"> <VisualState Name="Focused"> <Storyboard> <ObjectAnimationUsingKeyFrames Storyboard.TargetName="FocusVisual" Storyboard.TargetProperty="Visibility" Duration="0"> <DiscreteObjectKeyFrame KeyTime="0"> <DiscreteObjectKeyFrame.Value> <Visibility>Visible</Visibility> </DiscreteObjectKeyFrame.Value> </DiscreteObjectKeyFrame> </ObjectAnimationUsingKeyFrames> </Storyboard> </VisualState> <VisualState Name="Unfocused"/> </VisualStateGroup> </VisualStateManager.VisualStateGroups>
在C#中對應視覺狀態的切換
private void UpdateStates(bool useTransitions) { if (IsFocused) { VisualStateManager.GoToState(this, "Focused", false); } else { VisualStateManager.GoToState(this, "Unfocused", false); } }
同時可以在後臺類中使用特性來標註
[TemplateVisualState(Name = "Focused", GroupName = "FocusedStates")] [TemplateVisualState(Name = "Unfocused", GroupName = "FocusedStates")] public class Numeric : Control{}
其實完全可以使用Trigger來實現該功能
以上就是詳解WPF中使用者控制元件和自定義控制元件的使用的詳細內容,更多關於WPF使用者控制元件 自定義控制元件的資料請關注it145.com其它相關文章!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45