Info
Version: | 0.1.0 |
Author(s): | MaterialThemeCore |
Last Update: | Saturday, December 21, 2019 |
.NET Fiddle: | Create the first Fiddle |
NuGet Url: | https://www.nuget.org/packages/MaterialThemeCore |
Install
Install-Package MaterialThemeCore
dotnet add package MaterialThemeCore
paket add MaterialThemeCore
MaterialThemeCore Download (Unzip the "nupkg" after downloading)
Dependencies
Tags
To add it to your form extend it with MaterialThemeForm and add
public Form1()
{
InitializeComponent();
var materialTheme = MaterialTheme.Instance;
materialTheme.AddFormToManage(this);
materialTheme.Theme = MaterialTheme.Themes.LIGHT;
materialTheme.MaterialColor = new MaterialColor(Primary.BlueGrey800, Primary.BlueGrey900, Primary.BlueGrey500, Accent.LightBlue200, TextShade.WHITE);
}.