wpf主题改变了我的想法

我将BureauBlue.xaml主题应用于我的应用程序,并破坏了我的所有对齐方式。 有没有解决方案来应用主题而不会破坏我的对齐?

将主题放在“主题”文件夹中。

application
 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
 x:Class="WpfApplication4.App"
 StartupUri="MainWindow.xaml">
 Application.Resources>

  ResourceDictionary>
   ResourceDictionary.MergedDictionaries>
    ResourceDictionary Source="Themes/BureauBlue.xaml"/>
   /ResourceDictionary.MergedDictionaries>
  /ResourceDictionary>
 /Application.Resources>
/Application>

我刚刚删除了我的代码的开始括号,因为它没有显示我的代码。


去App.xaml并粘贴那里的线,你会使用Vista的主题非常接近Windows7,进度条,复选框,菜单,定量按钮,滚动条等,但你不会有玻璃看。

<Application.Resources>
    <ResourceDictionary Source="/PresentationFramework.Aero, Version=3.0.0.0,
    Culture=neutral, PublicKeyToken=31bf3856ad364e35,
    ProcessorArchitecture=MSIL;component/themes/aero.normalcolor.xaml" />
</Application.Resources>
链接地址: http://www.djcxy.com/p/34483.html

上一篇: wpf theme changed my aligmnent

下一篇: New to XAML. What does the x: and :x mean?