
The webmaster learned about this control library from Lin Dexi in the blog park. Through clone, compilation, and operation, he found that this library is really good. As Lin Dexi said: "It has a very beautiful interface. The whole is Win10 style. The interface part is similar to the default UWP. This library supports versions of the. NET Framework 4.5 and above, and versions of. NET Core 3.0 and above, and can run on Windows Vista SP2 and above." I then moved readme from this warehouse, hoping to let more people know about the existence of this library and give WPF developers another UI library choice.

quick start
- Create a WPF application
- Install the package ModernWpfUI from NuGet.
- Edit App. xaml:
<Application
...
xmlns:ui="http://schemas.modernwpf.com/2019">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ui:ThemeResources />
<ui:XamlControlsResources />
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>
</Application>
- Edit MainWindow.xaml:
<Window
...
xmlns:ui="http://schemas.modernwpf.com/2019"
ui:WindowHelper.UseModernWindowStyle="True">
<ui:SimpleStackPanel Margin="12" Spacing="24">
<TextBlock Text="My first ModernWPF app" Style="{StaticResource HeaderTextBlockStyle}" />
<Button Content="I am a button" />
<Button Content="I am an accent button" Style="{StaticResource AccentButtonStyle}" />
</ui:SimpleStackPanel>
</Window>
some screenshots













