MahApps用户UI库的基本使用

MahApps用户UI库是Metro风格的库,提供了很多控件/样式。

首先通过Nuget安装该类库。

MahApps用户UI库的基本使用

然后在App.xaml中添加命名空间和ResourceDictionay即可使用。具体使用方式参见官方文档。当然,官方文档写得不详细,使用时常常要根据github上的Demo来参考如何写。

xmlns:mah="http://metro.mahapps.com/winfx/xaml/controls"

    <Application.Resources>

        <ResourceDictionary>
            <ResourceDictionary.MergedDictionaries>
                <ResourceDictionary Source="pack://application:,,,/MahApps.Metro;component/Styles/Controls.xaml" />
                <ResourceDictionary Source="pack://application:,,,/MahApps.Metro;component/Styles/Fonts.xaml" />
                <ResourceDictionary Source="pack://application:,,,/MahApps.Metro;component/Styles/Themes/Light.Blue.xaml" />
            </ResourceDictionary.MergedDictionaries>

</Application.Resources>

上一篇:一起学习Avalonia(九)


下一篇:【WPF学习】第一章 XAML介绍