首页 > 其他 > 详细

c#代码使用ResourceDictionary样式

时间:2014-07-02 18:06:09      阅读:516      评论:0      收藏:0      [点我收藏+]

对于ResourceDictionary样式代码:

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
...
 <Style x:Key="AlertButton" TargetType="ButtonBase" BasedOn="{StaticResource SystemButtonBase}">
        <Setter Property="Cursor" Value="Hand" />
        <Setter Property="Margin" Value="8"/>
        <Setter Property="Padding" Value="4"/>
        <Style.Triggers>
            <Trigger Property="IsMouseOver" Value="True">
                <Setter Property="Cursor" Value="Hand"></Setter>
                <Setter Property="Opacity" Value=".8" />
            </Trigger>
            <Trigger Property="IsPressed" Value="True">
                <Setter Property="Opacity" Value=".4" />
            </Trigger>
        </Style.Triggers>
    </Style>
...
</ResourceDictionary>

使用C#代码引用:

            ResourceDictionary mystyles;
            mystyles = new ResourceDictionary();
            mystyles.Source = new Uri("/FirstFloor.ModernUI;component/Assets/Button.xaml",
                    UriKind.RelativeOrAbsolute);
            System.Windows.Style btnStyle = mystyles["AlertButton"] as Style;

        new Button
                {
                    Foreground = new SolidColorBrush(Colors.White),
                    Content = content,
                    Command = this.CloseCommand,
                    CommandParameter = result,
                    IsDefault = false,
                    IsCancel = isCancel,
                    MinHeight = 21,
                    MinWidth = 65,
                    Background = new SolidColorBrush(System.Windows.Media.Color.FromRgb(252, 73, 0)),
                    Margin = new Thickness(4, 0, 4, 0)
                        ,
                    Style = new Style(typeof(Button), btnStyle) { Triggers = { tRed } }
                };

 

 

 

 

c#代码使用ResourceDictionary样式,布布扣,bubuko.com

c#代码使用ResourceDictionary样式

原文:http://www.cnblogs.com/9527y/p/3819862.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!