是否有“Microsoft”外观的标准WPF样式表?

是否有某些优秀的样式表(及其使用指南)可以应用于任何窗口以使其具有适当的“Microsoft”外观?

在我的案例/示例中,我有一个简单的窗口:

<Window x:Class="WPFTest.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    SnapsToDevicePixels="True">
    <Grid>
        <Grid.RowDeFinitions>
            <RowDeFinition Height="*" />
            <RowDeFinition Height="Auto" />
        </Grid.RowDeFinitions>
        <GroupBox Header="My checkBoxes">
          <StackPanel >
                <CheckBox>First</CheckBox>
                <CheckBox>Second</CheckBox>
                <CheckBox>Third</CheckBox>
            </StackPanel>
        </GroupBox>
        <StackPanel Grid.Row="1" Grid.ColumnSpan="2"
                    Orientation="Horizontal"
                    HorizontalAlignment="Right">
            <Button>OK</Button>
            <Button>Cancel</Button>
        </StackPanel>
    </Grid>
</Window>

这是它的样子:

我可以想到以下样式组

<Window.Resources>
    <Style targettype="CheckBox">
        <Setter Property="Margin" Value="0,8,0"/>
    </Style>
    <Style targettype="Grid">
        <Setter Property="Margin" Value="8"/>
    </Style>
    <Style targettype="StackPanel">
        <Setter Property="Margin" Value="0"/>
    </Style>
    <Style targettype="GroupBox">
        <Setter Property="Padding" Value="8"/>
    </Style>
    <Style targettype="Button">
        <Setter Property="Margin" Value="8,0"/>
        <Setter Property="Padding" Value="8"/>
        <Setter Property="MinWidth" Value="70"/>
    </Style>
</Window.Resources>

连同第一个复选框的更改:

<CheckBox Margin="0">First</CheckBox>

它使窗口看起来像这样:

它并不完美,但它比没有应用样式的要好得多.

解决方法

你可以在 WPF Toolkit page找到微软的7个WPF主题.

相关文章

Windows2012R2备用域控搭建 前置操作 域控主域控的主dns:自...
主域控角色迁移和夺取(转载) 转载自:http://yupeizhi.blo...
Windows2012R2 NTP时间同步 Windows2012R2里没有了internet时...
Windows注册表操作基础代码 Windows下对注册表进行操作使用的...
黑客常用WinAPI函数整理之前的博客写了很多关于Windows编程的...
一个简单的Windows Socket可复用框架说起网络编程,无非是建...