N-a-r-w-i-n / MetroSet-UI

Windows Forms Metro Skin Style, Make The Applications With Metro Styles. see more https://n-a-r-w-i-n.github.io/MetroSet-UI/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MetroSet-UI

MetroSet UI Framework

Windows Forms Metro Skin Style, Make The .NET Applications With Metro Styles.

Install via NuGet

Install-Package MetroSet_UI

Direct to NuGet

Link

Supported platforms

➡️ Windows XP SP1/SP2/SP3

➡️ Windows Vista

➡️ Windows 7

➡️ Windows 8

➡️ Windows 10

Dependency

↪️ .NET Framework 2.0 or higher.

Components Available

⬇️ Components Skin Support Custom Theme Support Animation Disabling Custom Smart Tags
➡️ StyleManager ✔️ ✖️ ✖️ ✖️ ✔️
➡️ MetroSetToolTip ✔️ ✔️ ✖️ ✖️ ✔️

Forms Available

⬇️ Forms Skin Support Custom Theme Support Animation Disabling Custom Smart Tags
➡️ MetroSetForm ✔️ ✔️ ✔️ ✖️ ✖️
➡️ MetroSetMessageBox ✖️ ✖️ ✔️ ✖️ ✖️

Controls Available

⬇️ Controls Skin Support Custom Theme Support Animation Disabling Custom Smart Tags
➡️ MetroSetBadge ✔️ ✔️ ✖️ ✔️ ✔️
➡️ MetroSetButton ✔️ ✔️ ✖️ ✔️ ✔️
➡️ MetroSetDefaultButton ✔️ ✔️ ✖️ ✔️ ✔️
➡️ MetroSetCheckBox ✔️ ✔️ ✔️ ✔️ ✔️
➡️ MetroSetComboBox ✔️ ✔️ ✖️ ✔️ ✔️
➡️ MetroSetContextMenuStrip ✔️ ✔️ ✖️ ✔️ ✔️
➡️ MetroSetControlBox ✔️ ✔️ ✖️ ✔️ ✔️
➡️ MetroSetDevider ✔️ ✔️ ✖️ ✖️ ✔️
➡️ MetroSetEllipse ✔️ ✔️ ✖️ ✔️ ✔️
➡️ MetroSetLabel ✔️ ✔️ ✖️ ✖️ ✔️
➡️ MetroSetLink ✔️ ✔️ ✖️ ✖️ ✔️
➡️ MetroSetListBox ✔️ ✔️ ✖️ ✔️ ✔️
➡️ MetroSetNumeric ✔️ ✔️ ✖️ ✔️ ✔️
➡️ MetroSetPanel ✔️ ✔️ ✖️ ✖️ ✖️
➡️ MetroSetProgress ✔️ ✔️ ✖️ ✔️ ✔️
➡️ MetroSetRadioButton ✔️ ✔️ ✔️ ✔️ ✔️
➡️ MetroSetRichTextBox ✔️ ✔️ ✖️ ✔️ ✔️
➡️ MetroSetScrollBar ✔️ ✔️ ✖️ ✔️ ✔️
➡️ MetroSetSwitch ✔️ ✔️ ✔️ ✔️ ✔️
➡️ MetroSetTabControl ✔️ ✔️ ✔️ ✔️ ✖️
➡️ MetroSetTextBox ✔️ ✔️ ✖️ ✔️ ✔️
➡️ MetroSetTile ✔️ ✔️ ✖️ ✔️ ✔️
➡️ MetroSetTrackBar ✔️ ✔️ ✖️ ✖️ ✔️

Demonstration

Light

MetroSet-UI

Dark

MetroSet-UI

Custom

MetroSet-UI

Custom

MetroSet-UI

Using MetroSetForm

C#.NET

using MetroSet_UI.Forms;

public partial class Form1 : MetroSetForm
    {
        public Form1()
        {
            InitializeComponent();
        }
    }

VB.NET

Imports MetroSet_UI.Forms

public class Form1 : Inherits MetroSetForm
    
    Sub New()
    
    End Sub
    
End Class

MetroSetMessageBox Example

C#.NET

using System;
using MetroSet_UI.Forms;
using System.Windows.Forms;
namespace MetroSet_UI_Example
{
    public partial class MetroSetForm1 : MetroSetForm 
    {
        public MetroSetForm1()
        {
            InitializeComponent();
        }

        private void MetroSetButton1_Click(object sender, EventArgs e)
        {
            MetroSetMessageBox.Show(this, "Content", "Caption", MessageBoxButtons.OK, MessageBoxIcon.Question);
        }

    }
}

VB.NET

Imports MetroSet_UI.Forms

public class Form1 : Inherits MetroSetForm
    
    Private Sub MetroSetButton1_Click(sender As Object, e As EventArgs)
			MetroSetMessageBox.Show(Me, "Content", "Caption", MessageBoxButtons.OKCancel, MessageBoxIcon.Question)
	End Sub
    
End Class

Credits

MCF.Goodwin : Form Fading

Burak Ozdiken : TabControlDesigner

Mavamaarten : TabControl Transition Method

License

MIT License

About

Windows Forms Metro Skin Style, Make The Applications With Metro Styles. see more https://n-a-r-w-i-n.github.io/MetroSet-UI/

License:Other


Languages

Language:C# 100.0%