使WPF应用程序看起来像Metro风格,即使在Windows 7中? (Window Chrome /主题/主题)

我喜欢新Office套件和Visual Studio中的窗口镶边:

在这里输入图像描述

当然,我仍然在为Windows 7开发应用程序,但是我想知道是否有一个快速简单的方法(阅读:WPF样式或Windows库)来模拟这种风格。 过去我已经做了一些橱窗造型,但是让它看起来和行为恰到好处是非常棘手的。

有谁知道是否有现有的模板或库添加一个“现代用户界面”的外观和感觉到我的WPF应用程序?

我所做的是创造我自己的窗口和风格。 因为我喜欢对所有东西都有控制权,所以我不希望一些外部库只是使用一个窗口。 我在GitHub上看过已经提到的MahApps.Metro

MahApps

在CodePlex上也是非常不错的现代UI 。 (仅限.NET4.5)

现代用户界面

还有一个是极乐世界,但我真的没有尝试这一个。

极乐世界

当我看到它是如何完成的时候,我做的风格非常简单。 现在我有自己的窗口,用xaml可以做任何我想做的事…对我来说,这是我做我自己的主要原因。 我也为你做了一个:)我可能会说,如果没有探索Modern UI ,我将无法做到这一点。 我试图让它看起来像VS2012窗口。 看起来像这样

为mywindow

这里是代码(请注意,它的目标是.NET4.5)

public class MyWindow : Window { public MyWindow() { this.CommandBindings.Add(new CommandBinding(SystemCommands.CloseWindowCommand, this.OnCloseWindow)); this.CommandBindings.Add(new CommandBinding(SystemCommands.MaximizeWindowCommand, this.OnMaximizeWindow, this.OnCanResizeWindow)); this.CommandBindings.Add(new CommandBinding(SystemCommands.MinimizeWindowCommand, this.OnMinimizeWindow, this.OnCanMinimizeWindow)); this.CommandBindings.Add(new CommandBinding(SystemCommands.RestoreWindowCommand, this.OnRestoreWindow, this.OnCanResizeWindow)); } private void OnCanResizeWindow(object sender, CanExecuteRoutedEventArgs e) { e.CanExecute = this.ResizeMode == ResizeMode.CanResize || this.ResizeMode == ResizeMode.CanResizeWithGrip; } private void OnCanMinimizeWindow(object sender, CanExecuteRoutedEventArgs e) { e.CanExecute = this.ResizeMode != ResizeMode.NoResize; } private void OnCloseWindow(object target, ExecutedRoutedEventArgs e) { SystemCommands.CloseWindow(this); } private void OnMaximizeWindow(object target, ExecutedRoutedEventArgs e) { SystemCommands.MaximizeWindow(this); } private void OnMinimizeWindow(object target, ExecutedRoutedEventArgs e) { SystemCommands.MinimizeWindow(this); } private void OnRestoreWindow(object target, ExecutedRoutedEventArgs e) { SystemCommands.RestoreWindow(this); } } 

而这里的资源:

 <BooleanToVisibilityConverter x:Key="bool2VisibilityConverter" /> <Color x:Key="WindowBackgroundColor">#FF2D2D30</Color> <Color x:Key="HighlightColor">#FF3F3F41</Color> <Color x:Key="BlueColor">#FF007ACC</Color> <Color x:Key="ForegroundColor">#FFF4F4F5</Color> <SolidColorBrush x:Key="WindowBackgroundColorBrush" Color="{StaticResource WindowBackgroundColor}"/> <SolidColorBrush x:Key="HighlightColorBrush" Color="{StaticResource HighlightColor}"/> <SolidColorBrush x:Key="BlueColorBrush" Color="{StaticResource BlueColor}"/> <SolidColorBrush x:Key="ForegroundColorBrush" Color="{StaticResource ForegroundColor}"/> <Style x:Key="WindowButtonStyle" TargetType="{x:Type Button}"> <Setter Property="Foreground" Value="{DynamicResource ForegroundColorBrush}" /> <Setter Property="Background" Value="Transparent" /> <Setter Property="HorizontalContentAlignment" Value="Center" /> <Setter Property="VerticalContentAlignment" Value="Center" /> <Setter Property="Padding" Value="1" /> <Setter Property="Template"> <Setter.Value> <ControlTemplate TargetType="{x:Type Button}"> <Grid Background="{TemplateBinding Background}"> <ContentPresenter x:Name="contentPresenter" HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" VerticalAlignment="{TemplateBinding VerticalContentAlignment}" SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" Margin="{TemplateBinding Padding}" RecognizesAccessKey="True" /> </Grid> <ControlTemplate.Triggers> <Trigger Property="IsMouseOver" Value="True"> <Setter Property="Background" Value="{StaticResource HighlightColorBrush}" /> </Trigger> <Trigger Property="IsPressed" Value="True"> <Setter Property="Background" Value="{DynamicResource BlueColorBrush}" /> </Trigger> <Trigger Property="IsEnabled" Value="false"> <Setter TargetName="contentPresenter" Property="Opacity" Value=".5" /> </Trigger> </ControlTemplate.Triggers> </ControlTemplate> </Setter.Value> </Setter> </Style> <Style x:Key="MyWindowStyle" TargetType="local:MyWindow"> <Setter Property="Foreground" Value="{DynamicResource ForegroundColorBrush}" /> <Setter Property="Background" Value="{DynamicResource WindowBackgroundBrush}"/> <Setter Property="ResizeMode" Value="CanResizeWithGrip" /> <Setter Property="UseLayoutRounding" Value="True" /> <Setter Property="TextOptions.TextFormattingMode" Value="Display" /> <Setter Property="Template"> <Setter.Value> <ControlTemplate TargetType="local:MyWindow"> <Border x:Name="WindowBorder" Margin="{Binding Source={x:Static SystemParameters.WindowNonClientFrameThickness}}" Background="{StaticResource WindowBackgroundColorBrush}"> <Grid> <Border BorderThickness="1"> <AdornerDecorator> <Grid x:Name="LayoutRoot"> <Grid.RowDefinitions> <RowDefinition Height="25" /> <RowDefinition Height="*" /> <RowDefinition Height="15" /> </Grid.RowDefinitions> <ContentPresenter Grid.Row="1" Grid.RowSpan="2" Margin="7"/> <Rectangle x:Name="HeaderBackground" Height="25" Fill="{DynamicResource WindowBackgroundColorBrush}" VerticalAlignment="Top" Grid.Row="0"/> <StackPanel Orientation="Horizontal" HorizontalAlignment="Right" VerticalAlignment="Top" WindowChrome.IsHitTestVisibleInChrome="True" Grid.Row="0"> <Button Command="{Binding Source={x:Static SystemCommands.MinimizeWindowCommand}}" ToolTip="minimize" Style="{StaticResource WindowButtonStyle}"> <Button.Content> <Grid Width="30" Height="25" RenderTransform="1,0,0,1,0,1"> <Path Data="M0,6 L8,6 Z" Width="8" Height="7" VerticalAlignment="Center" HorizontalAlignment="Center" Stroke="{Binding Foreground, RelativeSource={RelativeSource Mode=FindAncestor, AncestorType=Button}}" StrokeThickness="2" /> </Grid> </Button.Content> </Button> <Grid Margin="1,0,1,0"> <Button x:Name="Restore" Command="{Binding Source={x:Static SystemCommands.RestoreWindowCommand}}" ToolTip="restore" Visibility="Collapsed" Style="{StaticResource WindowButtonStyle}"> <Button.Content> <Grid Width="30" Height="25" UseLayoutRounding="True" RenderTransform="1,0,0,1,.5,.5"> <Path Data="M2,0 L8,0 L8,6 M0,3 L6,3 M0,2 L6,2 L6,8 L0,8 Z" Width="8" Height="8" VerticalAlignment="Center" HorizontalAlignment="Center" Stroke="{Binding Foreground, RelativeSource={RelativeSource Mode=FindAncestor, AncestorType=Button}}" StrokeThickness="1" /> </Grid> </Button.Content> </Button> <Button x:Name="Maximize" Command="{Binding Source={x:Static SystemCommands.MaximizeWindowCommand}}" ToolTip="maximize" Style="{StaticResource WindowButtonStyle}"> <Button.Content> <Grid Width="31" Height="25"> <Path Data="M0,1 L9,1 L9,8 L0,8 Z" Width="9" Height="8" VerticalAlignment="Center" HorizontalAlignment="Center" Stroke="{Binding Foreground, RelativeSource={RelativeSource Mode=FindAncestor, AncestorType=Button}}" StrokeThickness="2" /> </Grid> </Button.Content> </Button> </Grid> <Button Command="{Binding Source={x:Static SystemCommands.CloseWindowCommand}}" ToolTip="close" Style="{StaticResource WindowButtonStyle}"> <Button.Content> <Grid Width="30" Height="25" RenderTransform="1,0,0,1,0,1"> <Path Data="M0,0 L8,7 M8,0 L0,7 Z" Width="8" Height="7" VerticalAlignment="Center" HorizontalAlignment="Center" Stroke="{Binding Foreground, RelativeSource={RelativeSource Mode=FindAncestor, AncestorType=Button}}" StrokeThickness="1.5" /> </Grid> </Button.Content> </Button> </StackPanel> <TextBlock x:Name="WindowTitleTextBlock" Grid.Row="0" Text="{TemplateBinding Title}" HorizontalAlignment="Left" TextTrimming="CharacterEllipsis" VerticalAlignment="Center" Margin="8 -1 0 0" FontSize="16" Foreground="{TemplateBinding Foreground}"/> <Grid Grid.Row="2"> <Path x:Name="ResizeGrip" Visibility="Collapsed" Width="12" Height="12" Margin="1" HorizontalAlignment="Right" Stroke="{StaticResource BlueColorBrush}" StrokeThickness="1" Stretch="None" Data="F1 M1,10 L3,10 M5,10 L7,10 M9,10 L11,10 M2,9 L2,11 M6,9 L6,11 M10,9 L10,11 M5,6 L7,6 M9,6 L11,6 M6,5 L6,7 M10,5 L10,7 M9,2 L11,2 M10,1 L10,3" /> </Grid> </Grid> </AdornerDecorator> </Border> <Border BorderBrush="{StaticResource BlueColorBrush}" BorderThickness="1" Visibility="{Binding IsActive, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type Window}}, Converter={StaticResource bool2VisibilityConverter}}" /> </Grid> </Border> <ControlTemplate.Triggers> <Trigger Property="WindowState" Value="Maximized"> <Setter TargetName="Maximize" Property="Visibility" Value="Collapsed" /> <Setter TargetName="Restore" Property="Visibility" Value="Visible" /> <Setter TargetName="LayoutRoot" Property="Margin" Value="7" /> </Trigger> <Trigger Property="WindowState" Value="Normal"> <Setter TargetName="Maximize" Property="Visibility" Value="Visible" /> <Setter TargetName="Restore" Property="Visibility" Value="Collapsed" /> </Trigger> <MultiTrigger> <MultiTrigger.Conditions> <Condition Property="ResizeMode" Value="CanResizeWithGrip" /> <Condition Property="WindowState" Value="Normal" /> </MultiTrigger.Conditions> <Setter TargetName="ResizeGrip" Property="Visibility" Value="Visible" /> </MultiTrigger> </ControlTemplate.Triggers> </ControlTemplate> </Setter.Value> </Setter> <Setter Property="WindowChrome.WindowChrome"> <Setter.Value> <WindowChrome CornerRadius="0" GlassFrameThickness="1" UseAeroCaptionButtons="False" /> </Setter.Value> </Setter> </Style> 

我最终select的解决scheme是MahApps.Metro ( github ),它(现在在两个软件上使用它)我认为是一个很好的用户界面工具包(相信奥利弗·沃格尔的build议)

窗口样式

它只需要很less的努力即可使应用程序脱颖而出,并且具有标准Windows 8控件的适应性。 这是非常强大的。

文本框水印

Nuget提供了一个版本:

您可以使用GUI(右键单击您的项目,pipe理Nuget引用,searchMahApps.Metro)或通过控制台通过Nuget安装MahApps.Metro:

PM>安装包MahApps.Metro

它也是免费的 – 即使是商业用途。

2013年10月29日更新:

我发现MahApps.Metro的Github版本包含了当前nuget版本中没有的控件和样式,其中包括:

数据网格:

在这里输入图像描述

清洁窗口:

在这里输入图像描述

popupbutton:

在这里输入图像描述

瓷砖:

在这里输入图像描述

github存储库非常活跃,有相当多的用户贡献。 我build议检查一下。

我会推荐WPF的现代用户界面 。

它有一个非常活跃的维护者它是真棒和自由的!

WPF的现代用户界面(示例应用程序的屏幕截图

我目前正在向MUI移植一些项目,第一个(而第二个)印象只是哇!

要看到MUI的行动,你可以下载基于MUI的XAML间谍软件 。

编辑:使用WPF现代用户界面几个月,我很喜欢它!

基于Viktor La Croix上面的答案 ,我会改变它使用以下内容:

Marlett字体示例

将最小化,恢复/最大化和closuresbutton用于Marlett字体而不是path数据点是更好的做法。

 <StackPanel Orientation="Horizontal" HorizontalAlignment="Right" VerticalAlignment="Top" WindowChrome.IsHitTestVisibleInChrome="True" Grid.Row="0"> <Button Command="{Binding Source={x:Static SystemCommands.MinimizeWindowCommand}}" ToolTip="minimize" Style="{StaticResource WindowButtonStyle}"> <Button.Content> <Grid Width="30" Height="25"> <TextBlock Text="0" FontFamily="Marlett" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" Padding="3.5,0,0,3" /> </Grid> </Button.Content> </Button> <Grid Margin="1,0,1,0"> <Button x:Name="Restore" Command="{Binding Source={x:Static SystemCommands.RestoreWindowCommand}}" ToolTip="restore" Visibility="Collapsed" Style="{StaticResource WindowButtonStyle}"> <Button.Content> <Grid Width="30" Height="25" UseLayoutRounding="True"> <TextBlock Text="2" FontFamily="Marlett" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" Padding="2,0,0,1" /> </Grid> </Button.Content> </Button> <Button x:Name="Maximize" Command="{Binding Source={x:Static SystemCommands.MaximizeWindowCommand}}" ToolTip="maximize" Style="{StaticResource WindowButtonStyle}"> <Button.Content> <Grid Width="31" Height="25"> <TextBlock Text="1" FontFamily="Marlett" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" Padding="2,0,0,1" /> </Grid> </Button.Content> </Button> </Grid> <Button Command="{Binding Source={x:Static SystemCommands.CloseWindowCommand}}" ToolTip="close" Style="{StaticResource WindowButtonStyle}"> <Button.Content> <Grid Width="30" Height="25"> <TextBlock Text="r" FontFamily="Marlett" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" Padding="0,0,0,1" /> </Grid> </Button.Content> </Button> 

如果您愿意付款,我强烈build议您使用Telerik Components for WPF 。 他们提供了很棒的风格/主题,并且具有Office 2013和Windows 8(编辑:以及Visual Studio 2013主题风格)的特定主题。 但是,提供的不仅仅是样式,实际上你会得到一大堆真正有用的控件。

下面是它在行动中的样子(截图来自telerik样本):

Telerik仪表板示例

Telerik CRM仪表板示例

以下是Telerik执行仪表板样本 (第一张截图)的链接,以及CRM仪表盘 (第二张截图)的链接。

他们提供了一个30天的试用,只是给它一个镜头!