<a href="http://webabcd.blog.51cto.com/1787395/342790" target="_blank">[索引頁]</a>
<a href="http://down.51cto.com/data/100302" target="_blank">[源碼下載下傳]</a>
穩紮穩打Silverlight(12) - 2.0外觀之樣式, 模闆, 視覺狀态和視覺狀态管理器
介紹
Silverlight 2.0 外觀控制:樣式(Style), 模闆(Template), 視覺狀态(VisualState)和視覺狀态管理器(VisualStateManager)
線上DEMO
示例
1、樣式(App.xaml)
<Application xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="Silverlight20.App"
>
<Application.Resources>
<!--全局樣式 - 任何地方都可引用-->
<!--
Style - 自定義樣式資源。用于修改控件的樣式。各個控件的預設樣式可參見文檔
x:Key - 唯一辨別
TargetType - 目标對象類型
Setter - 屬性設定器
Property - 需要設定的屬性名稱
Value - 需要設定的屬性值
-->
<Style x:Key="styleTestApp" TargetType="TextBox">
<Setter Property="FontSize" Value="24"/>
<Setter Property="Foreground" Value="#0000FF"/>
</Style>
</Application.Resources>
</Application>
樣式(Style.xaml)
<UserControl x:Class="Silverlight20.Appearance.Style"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<StackPanel HorizontalAlignment="Left">
<StackPanel.Resources>
<!--容器内樣式 - 所屬容器内可引用-->
<!--
Style - 自定義樣式資源。用于修改控件的樣式。各個控件的預設樣式可參見文檔
x:Key - 唯一辨別
TargetType - 目标對象類型
Setter - 屬性設定器
Property - 需要設定的屬性名稱
Value - 需要設定的屬性值
-->
<Style x:Key="styleTestInContainer" TargetType="TextBox">
<Setter Property="FontSize" Value="24"/>
<Setter Property="Foreground" Value="#00FF00"/>
</Style>
</StackPanel.Resources>
<!--全局樣式的應用-->
<TextBox Text="我是TextBox(全局樣式的應用)" Margin="5" Style="{StaticResource styleTestApp}" />
<!--容器内樣式的應用-->
<TextBox Text="我是TextBox(容器内樣式的應用)" Margin="5" Style="{StaticResource styleTestInContainer}" />
<!--内聯樣式的應用。内聯樣式優先級高于全局樣式和容器内樣式-->
<TextBox Text="我是TextBox(内連樣式的應用)" Margin="5" Foreground="#FF0000" Style="{StaticResource styleTestInContainer}" />
</StackPanel>
</UserControl>
2、模闆(App.xaml)
<!--全局模闆 - 任何地方都可引用-->
ControlTemplate - 自定義控件模闆。用于修改控件的外觀。各個控件的預設模闆可參見文檔
ContentPresenter - 用于顯示繼承自 System.Windows.Controls.ContentControl 的控件的内容
TemplateBinding - 綁定到所指定的屬性名稱
<ControlTemplate x:Key="templateTestApp" TargetType="Button">
<Border BorderBrush="Red" BorderThickness="1">
<Grid Background="{TemplateBinding Background}">
<ContentPresenter HorizontalAlignment="Right" />
</Grid>
</Border>
</ControlTemplate>
模闆(Template.xaml)
<UserControl x:Class="Silverlight20.Appearance.Template"
<!--容器内模闆 - 所屬容器内可引用-->
ControlTemplate - 自定義控件模闆。用于修改控件的外觀。各個控件的預設模闆可參見文檔
ContentPresenter - 用于顯示繼承自 System.Windows.Controls.ContentControl 的控件的内容
TemplateBinding - 綁定到所指定的屬性名稱
<ControlTemplate x:Key="templateTestInContainer" TargetType="Button">
<Border BorderBrush="Red" BorderThickness="1">
<Grid Background="{TemplateBinding Background}">
<ContentPresenter HorizontalAlignment="Right" />
</Grid>
</Border>
</ControlTemplate>
<!--樣式内設定模闆 - 指定了樣式即指定了樣式内的模闆-->
<Style x:Key="templateTestInStyle" TargetType="Button">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="Button">
<Border BorderBrush="Red" BorderThickness="1">
<Grid Background="{TemplateBinding Background}">
<ContentPresenter HorizontalAlignment="Right" />
</Grid>
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
<!--全局模闆的應用-->
<Button Width="200" Margin="5" Content="我是Button(全局模闆的應用)" Background="Yellow" Template="{StaticResource templateTestApp}" />
<!--容器内模闆的應用-->
<Button Width="200" Margin="5" Content="我是Button(容器内模闆的應用)" Background="Yellow" Template="{StaticResource templateTestInContainer}" />
<!--樣式内模闆的應用-->
<Button Width="200" Margin="5" Content="我是Button(樣式内模闆的應用)" Background="Yellow" Style="{StaticResource templateTestInStyle}" />
<!--内聯式模闆的應用-->
<Button Width="200" Margin="5" Content="我是Button(樣式内模闆的應用)">
<Button.Template>
<ControlTemplate>
<Border BorderBrush="Red" BorderThickness="1">
<Grid Background="Yellow">
<ContentPresenter HorizontalAlignment="Right" />
</Grid>
</Border>
</ControlTemplate>
</Button.Template>
</Button>
3、視覺狀态和視覺狀态管理器(App.xaml)
<!--全局視覺狀态 - 任何地方都可引用-->
VisualStateManager - 視覺狀态管理器,用來管理視覺狀态的。各個控件的預設視覺狀态可參見文檔
需要導入命名空間 xmlns:vsm="clr-namespace:System.Windows;assembly=System.Windows"
<ControlTemplate x:Key="vsmTestApp" TargetType="Button" xmlns:vsm="clr-namespace:System.Windows;assembly=System.Windows">
<Grid>
<vsm:VisualStateManager.VisualStateGroups>
<!--
VisualStateGroup - 視覺狀态組
如:
CommonStates 組有 Normal, MouseOver, Pressed, Disabled
FocusStates 組有 Unfocused, Focused
每一個視覺狀态組取一個視覺狀态值就構成了控件的視覺狀态
x:Name - 視覺狀态的所屬組别名稱
-->
<vsm:VisualStateGroup x:Name="CommonStates">
<!--
VisualState - 配置視覺狀态
x:Name - 所屬視覺狀态組内的指定的視覺狀态名稱
-->
<vsm:VisualState x:Name="MouseOver">
<Storyboard>
<ColorAnimation
Storyboard.TargetName="borderBrush"
Storyboard.TargetProperty="Color"
To="Green"
Duration="0:0:3" />
</Storyboard>
</vsm:VisualState>
<vsm:VisualState x:Name="Normal" />
VisualStateGroup.Transitions - 所屬視覺狀态組内的狀态轉換的配置
From - 轉換前的視覺狀态名稱
To - 轉換後的視覺狀态名稱
GeneratedDuration - 一個狀态轉換到另一個狀态的所需時間
<vsm:VisualStateGroup.Transitions>
<vsm:VisualTransition From="MouseOver" To="Normal" GeneratedDuration="0:0:3">
<Storyboard>
<ColorAnimation
To="Red"
</Storyboard>
</vsm:VisualTransition>
</vsm:VisualStateGroup.Transitions>
</vsm:VisualStateGroup>
</vsm:VisualStateManager.VisualStateGroups>
<Border x:Name="border" BorderThickness="10">
<Border.BorderBrush>
<SolidColorBrush x:Name="borderBrush" Color="Red" />
</Border.BorderBrush>
</Grid>
視覺狀态和視覺狀态管理器(VisualStateManager.xaml)
<UserControl x:Class="Silverlight20.Appearance.VisualStateManager"
<!--容器内視覺狀态 - 所屬容器内可引用-->
VisualStateManager - 視覺狀态管理器,用來管理視覺狀态的。各個控件的預設視覺狀态可參見文檔
需要導入命名空間 xmlns:vsm="clr-namespace:System.Windows;assembly=System.Windows"
<ControlTemplate x:Key="vsmTestInContainer" TargetType="Button" xmlns:vsm="clr-namespace:System.Windows;assembly=System.Windows">
<Grid>
<vsm:VisualStateManager.VisualStateGroups>
VisualStateGroup - 視覺狀态組
如:
CommonStates 組有 Normal, MouseOver, Pressed, Disabled
FocusStates 組有 Unfocused, Focused
每一個視覺狀态組取一個視覺狀态值就構成了控件的視覺狀态
x:Name - 視覺狀态的所屬組别名稱
<vsm:VisualStateGroup x:Name="CommonStates">
<!--
VisualState - 配置視覺狀态
x:Name - 所屬視覺狀态組内的指定的視覺狀态名稱
-->
<vsm:VisualState x:Name="MouseOver">
</vsm:VisualState>
<vsm:VisualState x:Name="Normal" />
VisualStateGroup.Transitions - 所屬視覺狀态組内的狀态轉換的配置
From - 轉換前的視覺狀态名稱
To - 轉換後的視覺狀态名稱
GeneratedDuration - 一個狀态轉換到另一個狀态的所需時間
<vsm:VisualStateGroup.Transitions>
<vsm:VisualTransition From="MouseOver" To="Normal" GeneratedDuration="0:0:3">
<Storyboard>
<ColorAnimation
</Storyboard>
</vsm:VisualTransition>
</vsm:VisualStateGroup.Transitions>
</vsm:VisualStateGroup>
</vsm:VisualStateManager.VisualStateGroups>
<Border x:Name="border" BorderThickness="10">
<Border.BorderBrush>
<SolidColorBrush x:Name="borderBrush" Color="Red" />
</Border.BorderBrush>
<Grid Background="{TemplateBinding Background}">
<!--全局視覺狀态的應用-->
<Button Content="我是Button(全局視覺狀态的應用)" Margin="5" Background="Yellow" Template="{StaticResource vsmTestApp}" />
<!--容器内視覺狀态的應用-->
<Button Content="我是Button(容器内視覺狀态的應用)" Margin="5" Background="Yellow" Template="{StaticResource vsmTestInContainer}" />
OK
本文轉自webabcd 51CTO部落格,原文連結:http://blog.51cto.com/webabcd/343042,如需轉載請自行聯系原作者