1 Star 5 Fork 1

末叶 / DOC_WPFTOOLS

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
起步.md 1.06 KB
一键复制 编辑 原始数据 按行查看 历史
末叶 提交于 2016-12-29 00:36 . Updates SUMMARY.md

起步

简要介绍本工具(WPFTools)的使用以及特点

WPFTools的使用

  • 编译本程序源码 取得WPFTools.dll文件
  • 新建WPF应用程序
  • 添加引用WPFTools.dll
  • 编辑WPF应用程序的app.xaml的Application.Resources内容,则可以使用基础样式
   <Application x:Class="WPFToolsDemo.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="/WPFTools;component/Styles/UI.xaml"/>
                <ResourceDictionary Source="/WPFTools;component/Styles/UI.Light.xaml"/>
            </ResourceDictionary.MergedDictionaries>
        </ResourceDictionary>
    </Application.Resources>
</Application>

如果使用 以下资源则为黑色主题

<ResourceDictionary Source="/WPFTools;component/Styles/UI.Dark.xaml"/>
1
https://gitee.com/chenhome/DOC_WPFTOOLS.git
git@gitee.com:chenhome/DOC_WPFTOOLS.git
chenhome
DOC_WPFTOOLS
DOC_WPFTOOLS
master

搜索帮助