后台代码引用资源字典样式

来源:互联网 发布:12320内蒙古网络预约 编辑:程序博客网 时间:2024/04/28 05:01

1.资源字典定义:

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"                    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">    <Style TargetType="Button" x:Key="GroupBoxButton">        <Setter Property="Width" Value="72"/>        <Setter Property="Height" Value="30"/>        <Setter Property="Margin" Value="5"/>        <Setter Property="Background" Value="Black"/>    </Style></ResourceDictionary>
2.后台代码

 Button b = new Button(); b.Style = FindResource("GroupBoxButton") as Style;


0 0
原创粉丝点击