alonfnt / PhotonTheme

A new clean and modern theme to use in your WPF applications. It also includes new controls missing from the default WPF toolkit.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PhotonTheme [ In development ]

This is a Toolkit that tries to help on the modernization of WPF applications. The inital inspiration for this Design can be found in: UI Design System

Some base controls and mostly the icon pack is from Material Design Library, which has done an excelent job on bringing the Material Design to WPF.

This library currently works with .Net Core 3.0.

Nuget MIT license

Styles and Controls

Alert Avatar Badge Button
CheckBox Colors ComboBox DataGrid
DateTimePicker Dialog Header Icons
Navigation Notifications PasswordBox PopupBox
ProgressBar RadioButton Slider TabControl
TextBlock TextBox ToggleButton Tooltip
VerificationBox

Getting Started

  1. Install the Nuget Package

Install-Package PhotonTheme

  1. In the App.xaml file, add the following ResourceDictionary:
<Application . . . >
    <Application.Resources>
        <ResourceDictionary>
            <ResourceDictionary.MergedDictionaries>
                <ResourceDictionary Source="pack://application:,,,/PhotonTheme;component/Themes/Defaults.xaml" />
            </ResourceDictionary.MergedDictionaries>
        </ResourceDictionary>
    </Application.Resources>
</Application>
  1. You can start using all the styles and controls of the Toolkit now.

License

This project is licensed under the MIT License - see the LICENSE.md file for details

About

A new clean and modern theme to use in your WPF applications. It also includes new controls missing from the default WPF toolkit.

License:MIT License


Languages

Language:C# 100.0%