랭킹으로 돌아가기
Kinnara/ModernWpf
C#Modern styles and controls for your WPF applications
wpfxamlcsharpfluent-designwinuiwindowsdesktop
주요 지표
스타 성장
스타
5k
포크
487
주간 성장
—
이슈
239
2k4k
2019년 10월2020년 11월2022년 1월2023년 2월2024년 4월2025년 6월2026년 7월
README
ModernWPF UI Library
Modern styles and controls for your WPF applications.
Features
Modern styles and new features for the majority of the stock WPF controls.
Light and dark themes that can be easily customized. A high contrast theme is also included.
Additional controls to help you build modern applications. Some are ported from the Windows UI Library.
Targets .NET Framework 4.5+, .NET Core 3+, and .NET 5+. Runs on Windows Vista SP2 and above.

Quick start
Create a new WPF app.
Install from NuGet
Install-Package ModernWpfUI.Edit App.xaml to following:
<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 to following:
<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>
- See the wiki for more information.
Packages
| NuGet Package | Latest Versions |
|---|---|
| ModernWpfUI | |
| ModernWpfUI.MahApps |
Screenshots














관련 저장소