网站导航网学 原创论文 原创专题 网站设计 最新系统 原创论文 论文降重 发表论文 论文发表 UI设计定制 论文答辩PPT格式排版 期刊发表 论文专题
返回网学首页
网学原创论文
最新论文 推荐专题 热门论文 论文专题
当前位置: 网学 > 设计资源 > Silverlight > 正文

控件模板Template(Silverlight)

论文降重修改服务、格式排版等 获取论文 论文降重及排版 论文发表 相关服务

1.在控件声明中直接定义;

  1. <Button Content="Button1"> 
  2. <Button.Template> 
  3. <ControlTemplate TargetType=“Button”> 
  4. <!--在此ControlTemplate‐‐> 
  5. </ControlTemplate> 
  6. </Button.Template> 
  7. </Button> 

2.在容器的资源属性中定义:

  1. <StackPanel> 
  2. <StackPanel.Resources> 
  3. <Style x:Key="ButtonStyle" TargetType="Button"> 
  4. <Setter Property="Template"> 
  5. <Setter.Value> 
  6. <ControlTemplate TargetType="Button"> 
  7. <!‐‐在此定义ControlTemplate ‐‐> 
  8. </ControlTemplate> 
  9. </Setter.Value> 
  10. </Setter> 
  11. </Style> 
  12. </StackPanel.Resources> 
  13. <Button Style="{StaticResource ButtonStyle}" Content="Button1"/> 
  14. </StackPanel> 

3.app.xaml文件中定义:

  1. <Application.Resources> 
  2.             <Style TargetType="TextBlock" x:Key="TextBlockPrompt"> 
  3.                 <Setter Property="VerticalAlignment" Value="Bottom" /> 
  4.                 <Setter Property="HorizontalAlignment" Value="Left" /> 
  5.                 <Setter Property="FontFamily" Value="Verdana" /> 
  6.                 <Setter Property="FontSize" Value="14" /> 
  7.                 <Setter Property="FontWeight" Value="Medium" /> 
  8.                 <Setter Property="Foreground" Value="Blue" /> 
  9.             </Style> 
  10. </Application.Resources> 

前段绑定方法:

  1. <Button Style="{StaticResource TextBlockPrompt}" Content="Button1"/> 
设为首页 | 加入收藏 | 网学首页 | 原创论文 | 计算机原创
版权所有 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2020 myeducs.Cn www.myeducs.Cn All Rights Reserved 湘ICP备09003080号 常年法律顾问:王律师