Silverlight(12) - 2.0外观之样式, 模板, 视觉状态和视觉状态管理器
2008-11-14 11:50:26 来源:WEB开发网样式(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>
Tags:Silverlight 外观 样式
编辑录入:爽爽 [复制链接] [打 印]- ››silverlight全屏显示图片
- ››Silverlight MVVM 模式(一) 切近实战
- ››Silverlight for Windows Phone 7开发系列(1):...
- ››Silverlight for Windows Phone 7开发系列(2):...
- ››Silverlight for Windows Phone 7开发系列(3):...
- ››Silverlight for Windows Phone 7开发系列(4):...
- ››Silverlight for Symbian
- ››Silverlight3系列(四)数据绑定 Data Binding 1
- ››silverlight2 游戏 1 你能坚持多少秒
- ››Silverlight开发实践--PicZoomShow
- ››Silverlight自定义控件开发 - 令人懊恼的OnApplyT...
- ››Silverlight 2 RTW中ToolTipService.ToolTip不继承...
更多精彩
赞助商链接