PhotonTheme
PhotonTheme copied to clipboard
A new clean and modern theme to use in your WPF applications. It also includes new controls missing from the default WPF toolkit.
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.
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
- Install the Nuget Package
Install-Package PhotonTheme
- 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>
- 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