Windows Forms: Material Design for .Net WinForms in C#

Material Design for .Net in C#/VB.Net

Step 1Click New Project, then select Visual C# on the left, then Windows and then select Windows Forms Application. Name your project "SkinWinforms" and then click OK

material skin in c#Step 2: Right click on your project select Manage NuGet Packages -> Search MaterialSkin -> Install

c# material skinTheming WinForms (C# or VB.Net) to Google's Material Design Principles.

Step 3: Design your form as below

material skin

Step 4: Add code to handle your form as below

using MaterialSkin;
using MaterialSkin.Controls;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace SkinWinforms
{
    public partial class Form1 : MaterialForm//Change Form to MaterialForm
    {
        public Form1()
        {
            InitializeComponent();
            //Init material skin
            var skinManager = MaterialSkinManager.Instance;
            skinManager.AddFormToManage(this);
            skinManager.Theme = MaterialSkinManager.Themes.LIGHT;
            skinManager.ColorScheme = new ColorScheme(Primary.BlueGrey800, Primary.BlueGrey900, Primary.BlueGrey500, Accent.LightBlue200, TextShade.WHITE);
        }
    }
}

VIDEO TUTORIALS