All Projects → Kinnara → Modernwpf

Kinnara / Modernwpf

Licence: mit
Modern styles and controls for your WPF applications

Programming Languages

C#
18002 projects

Projects that are alternatives of or similar to Modernwpf

Microsoft Ui Xaml
Windows UI Library: the latest Windows 10 native controls and Fluent styles for your applications
Stars: ✭ 4,428 (+69.66%)
Mutual labels:  desktop, xaml, fluent-design, winui
Rise-Media-Player
One media player for everything you own or stream; whether it's music or videos, online or offline Rise Media Player does it all. And it's beautiful and native with the latest version of WinUI.
Stars: ✭ 600 (-77.01%)
Mutual labels:  xaml, fluent-design, winui
Xamlviewer
XAML Viewer is a lightweight XAML editor.
Stars: ✭ 87 (-96.67%)
Mutual labels:  desktop, wpf, xaml
SoftwareHelper
This is a windows app shortcut widget 🔨
Stars: ✭ 122 (-95.33%)
Mutual labels:  xaml, wpf, desktop
Celestial.UIToolkit
A custom WPF toolkit which is inspired by a lot of the current design languages, including Microsoft's Fluent Design and Google's Material Design.
Stars: ✭ 32 (-98.77%)
Mutual labels:  xaml, wpf, fluent-design
Modernwpfcommunitytoolkit
The ModernWpf Community Toolkit is a collection of helper functions and custom controls for the ModernWpf library.
Stars: ✭ 35 (-98.66%)
Mutual labels:  desktop, wpf, xaml
mvvmgen
MvvmGen is a lightweight MVVM library for XAML applications. It generates your ViewModels on-the-fly for you via a Roslyn-based C# Source Generator.
Stars: ✭ 179 (-93.14%)
Mutual labels:  xaml, wpf, winui
DevToys
A Swiss Army knife for developers.
Stars: ✭ 4,986 (+91.03%)
Mutual labels:  xaml, fluent-design, winui
ModernWpf
Modern styles and controls for your WPF applications without need WinRT
Stars: ✭ 65 (-97.51%)
Mutual labels:  xaml, wpf, winui
Mahapps.metro
A framework that allows developers to cobble together a better UI for their own WPF applications with minimal effort.
Stars: ✭ 8,023 (+207.39%)
Mutual labels:  wpf, xaml, winui
Files
A modern file manager that pushes the boundaries of the platform.
Stars: ✭ 15,198 (+482.3%)
Mutual labels:  xaml, fluent-design, winui
Simplewpfreporting
Reporting in WPF (XAML) made easy
Stars: ✭ 87 (-96.67%)
Mutual labels:  wpf, xaml
Xamarin Forms Gtk Movies Sample
The Movie DB Xamarin.Forms Sample
Stars: ✭ 83 (-96.82%)
Mutual labels:  wpf, xaml
Reactivehistory
Reactive undo/redo framework for .NET.
Stars: ✭ 82 (-96.86%)
Mutual labels:  wpf, xaml
Projectreunion
The Windows App SDK empowers all Windows desktop apps with modern Windows UI, APIs, and platform features, including back-compat support, shipped via NuGet.
Stars: ✭ 2,612 (+0.08%)
Mutual labels:  desktop, winui
Snoopwpf
Snoop - The WPF Spy Utility
Stars: ✭ 1,286 (-50.73%)
Mutual labels:  wpf, xaml
Mvvmvalidation
Lightweight library that helps reduce boilerplate when implementing validation in XAML MVVM applications
Stars: ✭ 141 (-94.6%)
Mutual labels:  wpf, xaml
Aura.ui
A Library with a lot of Controls for AvaloniaUI
Stars: ✭ 114 (-95.63%)
Mutual labels:  wpf, xaml
Toggldesktop
Toggl Desktop app for Windows, Mac and Linux
Stars: ✭ 1,663 (-36.28%)
Mutual labels:  desktop, wpf
Softwarehelper
Repository for WPF related samples
Stars: ✭ 77 (-97.05%)
Mutual labels:  desktop, wpf

ModernWPF UI Library

Gitter

Modern styles and controls for your WPF applications.

Features

Overview of controls (light theme)

Quick start

  1. Create a new WPF app.

  2. Install from NuGet Install-Package ModernWpfUI.

  3. 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>
  1. 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>
  1. See the wiki for more information.

Packages

NuGet Package Latest Versions
ModernWpfUI latest stable version
latest prerelease version
ModernWpfUI.MahApps latest stable version
latest prerelease version

Screenshots

Overview of controls (dark theme)

Control palette

Easily customize colors

NumberBox

ContentDialog

DataGrid

ItemsRepeater

Custom title bar

Calendar

Menu

Progress controls

Color ramp

Accent color palette

High contrast mode

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].