WEB开发网
开发学院图形图像Flash Silverlight(12) - 2.0外观之样式, 模板, 视觉状态... 阅读

Silverlight(12) - 2.0外观之样式, 模板, 视觉状态和视觉状态管理器

 2008-11-14 11:50:26 来源:WEB开发网   
核心提示: 2、模板(App.xaml)<Application xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.

2、模板(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>
  
    <!--全局模板 - 任何地方都可引用-->
    <!--
    ControlTemplate - 自定义控件模板。用于修改控件的外观。各个控件的默认模板可参见文档
      x:Key - 唯一标识
      TargetType - 目标对象类型
    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>
  
  </Application.Resources>
</Application>

上一页  1 2 3 4 5 6  下一页

Tags:Silverlight 外观 样式

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接