按钮的WPF样式

时间:2015-12-19 10:16:01

标签: c# wpf wpf-controls

我很长时间没有使用WPF(接近4年)。但是现在又开始再次使用它,你可以看到我提出的一个问题是在WPF中。我提到的原因是因为我对WPF及其工作方式有一些了解。我的最新项目使用BLEND来实现非常好的UI。 所以这里我有一个Photoshop布局,我正在尝试这种布局设计,

enter image description here

到目前为止我只有这个,

enter image description here

如果有人能指出我以下事情,那真的很感激。

如何获取边框发光效果和曲线以及如何将它们分组到单独文件中的特定样式并将其链接到按钮。感谢您的时间和答案

编辑:使用我的样式代码。

我在Custom_Styles.xaml中有以下样式代码(资源字典) 如何将其链接到按钮?

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
                    xmlns:local="clr-namespace:Keyboard_actual">

    <Style x:Key="Button" TargetType="Button">
        <Setter Property="Control.Template">
            <Setter.Value>
                <ControlTemplate>
                    <Border>
                        <Rectangle Margin="2" Stroke="#60000000" StrokeThickness="1" StrokeDashArray="1 2"/>
                    </Border>
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>

</ResourceDictionary>

0 个答案:

没有答案