简体   繁体   中英

Windows 7 Style in Windows XP

Whenever I insert the Aero.NormalColor.xaml into my resource dictionary, the only way the program is able to run is through debug mode. If it removed, I can run with debugging and without. Any reason? Here is my App.xaml:

<Application x:Class="HTA.App"
         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
         StartupUri="MainWindow.xaml">
<Application.Resources>
    <ResourceDictionary>
        <ResourceDictionary.MergedDictionaries>
            <ResourceDictionary Source="ResourceDictionary/Miscellaneous.xaml"/>
            <ResourceDictionary Source="ResourceDictionary/ListControls.xaml"/>
            <ResourceDictionary Source="/PresentationFramework.Aero;component/themes/Aero.NormalColor.xaml"/>
        </ResourceDictionary.MergedDictionaries>
    </ResourceDictionary>
</Application.Resources>

我需要将PresentationFramework.Aero的Copy Local属性设置为true。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM