├── .gitattributes ├── .gitignore ├── LICENSE ├── MetroSet Dark.gif ├── MetroSet Green.gif ├── MetroSet Light.gif ├── MetroSet Orange.gif ├── MetroSet Theme.xml ├── MetroSet UI Example ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── MetroSet UI Example.csproj ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings └── Resources │ ├── 111201.jpg │ ├── 372649.jpg │ ├── 475841.jpg │ ├── 542249.jpg │ ├── 579840.jpg │ ├── 579841.jpg │ ├── filter.png │ ├── icons8-double-right.png │ ├── monochrome-square-pattern-background_1164-1345.jpg │ └── monochrome-square-pattern.png ├── MetroSet UI.sln ├── MetroSet UI ├── Actions │ ├── MetroSetBadgeActionList.cs │ ├── MetroSetButtonActionList.cs │ ├── MetroSetCheckBoxActionList.cs │ ├── MetroSetControlBoxActionList.cs │ ├── MetroSetDefaultButtonActionList.cs │ ├── MetroSetDividerActionList.cs │ ├── MetroSetEllipseActionList.cs │ ├── MetroSetLabelActionList.cs │ ├── MetroSetLinkActionList.cs │ ├── MetroSetListBoxActionList.cs │ ├── MetroSetNumericActionList.cs │ ├── MetroSetProgressBarActionList.cs │ ├── MetroSetRadiobuttonActionList.cs │ ├── MetroSetRichTextBoxActionList.cs │ ├── MetroSetScrollBarActionList.cs │ ├── MetroSetSwitchActionList.cs │ ├── MetroSetTextBoxActionList.cs │ ├── MetroSetTileActionList.cs │ ├── MetroSetToolTipActionList.cs │ ├── MetroSetTrackBarActionList.cs │ └── StyleManagerActionList.cs ├── Animates │ ├── Animate.cs │ ├── ColorAnimate.cs │ ├── DoubleAnimat.cs │ ├── IntAnimate.cs │ ├── Interpolation.cs │ ├── PointFAnimate.cs │ └── SizeFAnimate.cs ├── Bitmaps │ ├── Button.bmp │ ├── CheckBox.bmp │ ├── ComoBox.bmp │ ├── ContextMenu.bmp │ ├── ControlButton.bmp │ ├── Divider.png │ ├── Ellipse.bmp │ ├── Form.bmp │ ├── Label.bmp │ ├── LinkLabel.bmp │ ├── ListBox.bmp │ ├── Numeric.bmp │ ├── Panel.bmp │ ├── Progress.bmp │ ├── RadioButton.bmp │ ├── RitchTextBox.bmp │ ├── ScrollBar.bmp │ ├── Slider.bmp │ ├── Style.bmp │ ├── Switch.bmp │ ├── TabControl.bmp │ ├── TextBox.bmp │ └── ToolTip.bmp ├── Child │ ├── MetroSetItemCollection.cs │ ├── MetroSetSetTabPage.cs │ ├── MetroSetTabPageCollectionEditor.cs │ └── MetroSetToolStripMenuItem.cs ├── Components │ ├── MetroSetSetToolTip.cs │ └── StyleManager.cs ├── Controls │ ├── MetroSetBadge.cs │ ├── MetroSetButton.cs │ ├── MetroSetCheckBox.cs │ ├── MetroSetComboBox.cs │ ├── MetroSetContextMenuStrip.cs │ ├── MetroSetControlBox.cs │ ├── MetroSetDefaultButton.cs │ ├── MetroSetDivider.cs │ ├── MetroSetEllipse.cs │ ├── MetroSetLabel.cs │ ├── MetroSetLink.cs │ ├── MetroSetListBox.cs │ ├── MetroSetNumeric.cs │ ├── MetroSetPanel.cs │ ├── MetroSetProgressBar.cs │ ├── MetroSetRadioButton.cs │ ├── MetroSetRichTextBox.cs │ ├── MetroSetScrollBar.cs │ ├── MetroSetSwitch.cs │ ├── MetroSetTabControl.cs │ ├── MetroSetTextBox.cs │ ├── MetroSetTile.cs │ └── MetroSetTrackBar.cs ├── Design │ ├── MetroSetBadgeDesigner.cs │ ├── MetroSetButtonDesigner.cs │ ├── MetroSetCheckBoxDesigner.cs │ ├── MetroSetControBoxDesigner.cs │ ├── MetroSetDefaultButtonDesigner.cs │ ├── MetroSetDividerDesigner.cs │ ├── MetroSetEllipseDesigner.cs │ ├── MetroSetLabelDesigner.cs │ ├── MetroSetLinkDesigner.cs │ ├── MetroSetListBoxDesigner.cs │ ├── MetroSetNumericDesigner.cs │ ├── MetroSetProgressBarDesigner.cs │ ├── MetroSetRadioButtonDesigner.cs │ ├── MetroSetRichTextBoxDesigner.cs │ ├── MetroSetScrollBarDesigner.cs │ ├── MetroSetSwitchDesigner.cs │ ├── MetroSetTabControlDesigner.cs │ ├── MetroSetTabpageDesigner.cs │ ├── MetroSetTextBoxDesigner.cs │ ├── MetroSetTileDesigner.cs │ ├── MetroSetToolTipDesigner.cs │ ├── MetroSetTrackBarDesigner.cs │ └── StyleManagerDesigner.cs ├── Enums │ ├── BageAlign.cs │ ├── CheckState.cs │ ├── DividerStyle.cs │ ├── EasingType.cs │ ├── MouseSates.cs │ ├── ProgressOrientation.cs │ ├── ScrollOrientation.cs │ ├── SignStyle.cs │ ├── Style.cs │ ├── TabStyle.cs │ ├── TextAlign.cs │ └── TileAlign.cs ├── Extensions │ ├── Global Font.cs │ ├── GraphicsQuality.cs │ ├── Methods.cs │ ├── MetroSetFonts.cs │ └── Utilites.cs ├── Forms │ ├── MetroSetForm.cs │ ├── MetroSetForm.resx │ └── MetroSetMessageBox.cs ├── Interfaces │ ├── IMetroForm.cs │ ├── IMetroSetControl.cs │ ├── MetroSetControl.cs │ └── MetroSetForm.cs ├── MetroSet UI.csproj ├── MetroSetUI.ico ├── Native │ └── User32.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── PublishProfiles │ │ └── FolderProfile.pubxml │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings └── Resources │ ├── Alert.png │ ├── Button.png │ ├── CheckBox.png │ ├── CircleProgress.png │ ├── ComoBox.png │ ├── ControlButton.png │ ├── Form.png │ ├── Label.png │ ├── LinkLabel.png │ ├── ListBox.png │ ├── MetroSet Theme.xml │ ├── Progress.png │ ├── RadioButton.png │ ├── Rate.png │ ├── RitchTextBox.png │ ├── SegoeWP-Bold.ttf │ ├── SegoeWP-Light.ttf │ ├── SegoeWP-Semibold.ttf │ ├── SegoeWP-Semilight.ttf │ ├── SegoeWP.ttf │ ├── Slider.png │ ├── Switch.png │ ├── TextBox.png │ └── Toggle.png ├── MetroSet.png ├── MetroSetUI.ico └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/LICENSE -------------------------------------------------------------------------------- /MetroSet Dark.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet Dark.gif -------------------------------------------------------------------------------- /MetroSet Green.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet Green.gif -------------------------------------------------------------------------------- /MetroSet Light.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet Light.gif -------------------------------------------------------------------------------- /MetroSet Orange.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet Orange.gif -------------------------------------------------------------------------------- /MetroSet Theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet Theme.xml -------------------------------------------------------------------------------- /MetroSet UI Example/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI Example/Form1.Designer.cs -------------------------------------------------------------------------------- /MetroSet UI Example/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI Example/Form1.cs -------------------------------------------------------------------------------- /MetroSet UI Example/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI Example/Form1.resx -------------------------------------------------------------------------------- /MetroSet UI Example/MetroSet UI Example.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI Example/MetroSet UI Example.csproj -------------------------------------------------------------------------------- /MetroSet UI Example/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI Example/Program.cs -------------------------------------------------------------------------------- /MetroSet UI Example/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI Example/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MetroSet UI Example/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI Example/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /MetroSet UI Example/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI Example/Properties/Resources.resx -------------------------------------------------------------------------------- /MetroSet UI Example/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI Example/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /MetroSet UI Example/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI Example/Properties/Settings.settings -------------------------------------------------------------------------------- /MetroSet UI Example/Resources/111201.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI Example/Resources/111201.jpg -------------------------------------------------------------------------------- /MetroSet UI Example/Resources/372649.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI Example/Resources/372649.jpg -------------------------------------------------------------------------------- /MetroSet UI Example/Resources/475841.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI Example/Resources/475841.jpg -------------------------------------------------------------------------------- /MetroSet UI Example/Resources/542249.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI Example/Resources/542249.jpg -------------------------------------------------------------------------------- /MetroSet UI Example/Resources/579840.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI Example/Resources/579840.jpg -------------------------------------------------------------------------------- /MetroSet UI Example/Resources/579841.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI Example/Resources/579841.jpg -------------------------------------------------------------------------------- /MetroSet UI Example/Resources/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI Example/Resources/filter.png -------------------------------------------------------------------------------- /MetroSet UI Example/Resources/icons8-double-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI Example/Resources/icons8-double-right.png -------------------------------------------------------------------------------- /MetroSet UI Example/Resources/monochrome-square-pattern-background_1164-1345.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI Example/Resources/monochrome-square-pattern-background_1164-1345.jpg -------------------------------------------------------------------------------- /MetroSet UI Example/Resources/monochrome-square-pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI Example/Resources/monochrome-square-pattern.png -------------------------------------------------------------------------------- /MetroSet UI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI.sln -------------------------------------------------------------------------------- /MetroSet UI/Actions/MetroSetBadgeActionList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Actions/MetroSetBadgeActionList.cs -------------------------------------------------------------------------------- /MetroSet UI/Actions/MetroSetButtonActionList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Actions/MetroSetButtonActionList.cs -------------------------------------------------------------------------------- /MetroSet UI/Actions/MetroSetCheckBoxActionList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Actions/MetroSetCheckBoxActionList.cs -------------------------------------------------------------------------------- /MetroSet UI/Actions/MetroSetControlBoxActionList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Actions/MetroSetControlBoxActionList.cs -------------------------------------------------------------------------------- /MetroSet UI/Actions/MetroSetDefaultButtonActionList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Actions/MetroSetDefaultButtonActionList.cs -------------------------------------------------------------------------------- /MetroSet UI/Actions/MetroSetDividerActionList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Actions/MetroSetDividerActionList.cs -------------------------------------------------------------------------------- /MetroSet UI/Actions/MetroSetEllipseActionList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Actions/MetroSetEllipseActionList.cs -------------------------------------------------------------------------------- /MetroSet UI/Actions/MetroSetLabelActionList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Actions/MetroSetLabelActionList.cs -------------------------------------------------------------------------------- /MetroSet UI/Actions/MetroSetLinkActionList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Actions/MetroSetLinkActionList.cs -------------------------------------------------------------------------------- /MetroSet UI/Actions/MetroSetListBoxActionList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Actions/MetroSetListBoxActionList.cs -------------------------------------------------------------------------------- /MetroSet UI/Actions/MetroSetNumericActionList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Actions/MetroSetNumericActionList.cs -------------------------------------------------------------------------------- /MetroSet UI/Actions/MetroSetProgressBarActionList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Actions/MetroSetProgressBarActionList.cs -------------------------------------------------------------------------------- /MetroSet UI/Actions/MetroSetRadiobuttonActionList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Actions/MetroSetRadiobuttonActionList.cs -------------------------------------------------------------------------------- /MetroSet UI/Actions/MetroSetRichTextBoxActionList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Actions/MetroSetRichTextBoxActionList.cs -------------------------------------------------------------------------------- /MetroSet UI/Actions/MetroSetScrollBarActionList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Actions/MetroSetScrollBarActionList.cs -------------------------------------------------------------------------------- /MetroSet UI/Actions/MetroSetSwitchActionList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Actions/MetroSetSwitchActionList.cs -------------------------------------------------------------------------------- /MetroSet UI/Actions/MetroSetTextBoxActionList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Actions/MetroSetTextBoxActionList.cs -------------------------------------------------------------------------------- /MetroSet UI/Actions/MetroSetTileActionList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Actions/MetroSetTileActionList.cs -------------------------------------------------------------------------------- /MetroSet UI/Actions/MetroSetToolTipActionList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Actions/MetroSetToolTipActionList.cs -------------------------------------------------------------------------------- /MetroSet UI/Actions/MetroSetTrackBarActionList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Actions/MetroSetTrackBarActionList.cs -------------------------------------------------------------------------------- /MetroSet UI/Actions/StyleManagerActionList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Actions/StyleManagerActionList.cs -------------------------------------------------------------------------------- /MetroSet UI/Animates/Animate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Animates/Animate.cs -------------------------------------------------------------------------------- /MetroSet UI/Animates/ColorAnimate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Animates/ColorAnimate.cs -------------------------------------------------------------------------------- /MetroSet UI/Animates/DoubleAnimat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Animates/DoubleAnimat.cs -------------------------------------------------------------------------------- /MetroSet UI/Animates/IntAnimate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Animates/IntAnimate.cs -------------------------------------------------------------------------------- /MetroSet UI/Animates/Interpolation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Animates/Interpolation.cs -------------------------------------------------------------------------------- /MetroSet UI/Animates/PointFAnimate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Animates/PointFAnimate.cs -------------------------------------------------------------------------------- /MetroSet UI/Animates/SizeFAnimate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Animates/SizeFAnimate.cs -------------------------------------------------------------------------------- /MetroSet UI/Bitmaps/Button.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Bitmaps/Button.bmp -------------------------------------------------------------------------------- /MetroSet UI/Bitmaps/CheckBox.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Bitmaps/CheckBox.bmp -------------------------------------------------------------------------------- /MetroSet UI/Bitmaps/ComoBox.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Bitmaps/ComoBox.bmp -------------------------------------------------------------------------------- /MetroSet UI/Bitmaps/ContextMenu.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Bitmaps/ContextMenu.bmp -------------------------------------------------------------------------------- /MetroSet UI/Bitmaps/ControlButton.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Bitmaps/ControlButton.bmp -------------------------------------------------------------------------------- /MetroSet UI/Bitmaps/Divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Bitmaps/Divider.png -------------------------------------------------------------------------------- /MetroSet UI/Bitmaps/Ellipse.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Bitmaps/Ellipse.bmp -------------------------------------------------------------------------------- /MetroSet UI/Bitmaps/Form.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Bitmaps/Form.bmp -------------------------------------------------------------------------------- /MetroSet UI/Bitmaps/Label.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Bitmaps/Label.bmp -------------------------------------------------------------------------------- /MetroSet UI/Bitmaps/LinkLabel.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Bitmaps/LinkLabel.bmp -------------------------------------------------------------------------------- /MetroSet UI/Bitmaps/ListBox.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Bitmaps/ListBox.bmp -------------------------------------------------------------------------------- /MetroSet UI/Bitmaps/Numeric.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Bitmaps/Numeric.bmp -------------------------------------------------------------------------------- /MetroSet UI/Bitmaps/Panel.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Bitmaps/Panel.bmp -------------------------------------------------------------------------------- /MetroSet UI/Bitmaps/Progress.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Bitmaps/Progress.bmp -------------------------------------------------------------------------------- /MetroSet UI/Bitmaps/RadioButton.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Bitmaps/RadioButton.bmp -------------------------------------------------------------------------------- /MetroSet UI/Bitmaps/RitchTextBox.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Bitmaps/RitchTextBox.bmp -------------------------------------------------------------------------------- /MetroSet UI/Bitmaps/ScrollBar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Bitmaps/ScrollBar.bmp -------------------------------------------------------------------------------- /MetroSet UI/Bitmaps/Slider.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Bitmaps/Slider.bmp -------------------------------------------------------------------------------- /MetroSet UI/Bitmaps/Style.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Bitmaps/Style.bmp -------------------------------------------------------------------------------- /MetroSet UI/Bitmaps/Switch.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Bitmaps/Switch.bmp -------------------------------------------------------------------------------- /MetroSet UI/Bitmaps/TabControl.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Bitmaps/TabControl.bmp -------------------------------------------------------------------------------- /MetroSet UI/Bitmaps/TextBox.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Bitmaps/TextBox.bmp -------------------------------------------------------------------------------- /MetroSet UI/Bitmaps/ToolTip.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Bitmaps/ToolTip.bmp -------------------------------------------------------------------------------- /MetroSet UI/Child/MetroSetItemCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Child/MetroSetItemCollection.cs -------------------------------------------------------------------------------- /MetroSet UI/Child/MetroSetSetTabPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Child/MetroSetSetTabPage.cs -------------------------------------------------------------------------------- /MetroSet UI/Child/MetroSetTabPageCollectionEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Child/MetroSetTabPageCollectionEditor.cs -------------------------------------------------------------------------------- /MetroSet UI/Child/MetroSetToolStripMenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Child/MetroSetToolStripMenuItem.cs -------------------------------------------------------------------------------- /MetroSet UI/Components/MetroSetSetToolTip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Components/MetroSetSetToolTip.cs -------------------------------------------------------------------------------- /MetroSet UI/Components/StyleManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Components/StyleManager.cs -------------------------------------------------------------------------------- /MetroSet UI/Controls/MetroSetBadge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Controls/MetroSetBadge.cs -------------------------------------------------------------------------------- /MetroSet UI/Controls/MetroSetButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Controls/MetroSetButton.cs -------------------------------------------------------------------------------- /MetroSet UI/Controls/MetroSetCheckBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Controls/MetroSetCheckBox.cs -------------------------------------------------------------------------------- /MetroSet UI/Controls/MetroSetComboBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Controls/MetroSetComboBox.cs -------------------------------------------------------------------------------- /MetroSet UI/Controls/MetroSetContextMenuStrip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Controls/MetroSetContextMenuStrip.cs -------------------------------------------------------------------------------- /MetroSet UI/Controls/MetroSetControlBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Controls/MetroSetControlBox.cs -------------------------------------------------------------------------------- /MetroSet UI/Controls/MetroSetDefaultButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Controls/MetroSetDefaultButton.cs -------------------------------------------------------------------------------- /MetroSet UI/Controls/MetroSetDivider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Controls/MetroSetDivider.cs -------------------------------------------------------------------------------- /MetroSet UI/Controls/MetroSetEllipse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Controls/MetroSetEllipse.cs -------------------------------------------------------------------------------- /MetroSet UI/Controls/MetroSetLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Controls/MetroSetLabel.cs -------------------------------------------------------------------------------- /MetroSet UI/Controls/MetroSetLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Controls/MetroSetLink.cs -------------------------------------------------------------------------------- /MetroSet UI/Controls/MetroSetListBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Controls/MetroSetListBox.cs -------------------------------------------------------------------------------- /MetroSet UI/Controls/MetroSetNumeric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Controls/MetroSetNumeric.cs -------------------------------------------------------------------------------- /MetroSet UI/Controls/MetroSetPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Controls/MetroSetPanel.cs -------------------------------------------------------------------------------- /MetroSet UI/Controls/MetroSetProgressBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Controls/MetroSetProgressBar.cs -------------------------------------------------------------------------------- /MetroSet UI/Controls/MetroSetRadioButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Controls/MetroSetRadioButton.cs -------------------------------------------------------------------------------- /MetroSet UI/Controls/MetroSetRichTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Controls/MetroSetRichTextBox.cs -------------------------------------------------------------------------------- /MetroSet UI/Controls/MetroSetScrollBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Controls/MetroSetScrollBar.cs -------------------------------------------------------------------------------- /MetroSet UI/Controls/MetroSetSwitch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Controls/MetroSetSwitch.cs -------------------------------------------------------------------------------- /MetroSet UI/Controls/MetroSetTabControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Controls/MetroSetTabControl.cs -------------------------------------------------------------------------------- /MetroSet UI/Controls/MetroSetTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Controls/MetroSetTextBox.cs -------------------------------------------------------------------------------- /MetroSet UI/Controls/MetroSetTile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Controls/MetroSetTile.cs -------------------------------------------------------------------------------- /MetroSet UI/Controls/MetroSetTrackBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Controls/MetroSetTrackBar.cs -------------------------------------------------------------------------------- /MetroSet UI/Design/MetroSetBadgeDesigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Design/MetroSetBadgeDesigner.cs -------------------------------------------------------------------------------- /MetroSet UI/Design/MetroSetButtonDesigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Design/MetroSetButtonDesigner.cs -------------------------------------------------------------------------------- /MetroSet UI/Design/MetroSetCheckBoxDesigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Design/MetroSetCheckBoxDesigner.cs -------------------------------------------------------------------------------- /MetroSet UI/Design/MetroSetControBoxDesigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Design/MetroSetControBoxDesigner.cs -------------------------------------------------------------------------------- /MetroSet UI/Design/MetroSetDefaultButtonDesigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Design/MetroSetDefaultButtonDesigner.cs -------------------------------------------------------------------------------- /MetroSet UI/Design/MetroSetDividerDesigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Design/MetroSetDividerDesigner.cs -------------------------------------------------------------------------------- /MetroSet UI/Design/MetroSetEllipseDesigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Design/MetroSetEllipseDesigner.cs -------------------------------------------------------------------------------- /MetroSet UI/Design/MetroSetLabelDesigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Design/MetroSetLabelDesigner.cs -------------------------------------------------------------------------------- /MetroSet UI/Design/MetroSetLinkDesigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Design/MetroSetLinkDesigner.cs -------------------------------------------------------------------------------- /MetroSet UI/Design/MetroSetListBoxDesigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Design/MetroSetListBoxDesigner.cs -------------------------------------------------------------------------------- /MetroSet UI/Design/MetroSetNumericDesigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Design/MetroSetNumericDesigner.cs -------------------------------------------------------------------------------- /MetroSet UI/Design/MetroSetProgressBarDesigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Design/MetroSetProgressBarDesigner.cs -------------------------------------------------------------------------------- /MetroSet UI/Design/MetroSetRadioButtonDesigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Design/MetroSetRadioButtonDesigner.cs -------------------------------------------------------------------------------- /MetroSet UI/Design/MetroSetRichTextBoxDesigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Design/MetroSetRichTextBoxDesigner.cs -------------------------------------------------------------------------------- /MetroSet UI/Design/MetroSetScrollBarDesigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Design/MetroSetScrollBarDesigner.cs -------------------------------------------------------------------------------- /MetroSet UI/Design/MetroSetSwitchDesigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Design/MetroSetSwitchDesigner.cs -------------------------------------------------------------------------------- /MetroSet UI/Design/MetroSetTabControlDesigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Design/MetroSetTabControlDesigner.cs -------------------------------------------------------------------------------- /MetroSet UI/Design/MetroSetTabpageDesigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Design/MetroSetTabpageDesigner.cs -------------------------------------------------------------------------------- /MetroSet UI/Design/MetroSetTextBoxDesigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Design/MetroSetTextBoxDesigner.cs -------------------------------------------------------------------------------- /MetroSet UI/Design/MetroSetTileDesigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Design/MetroSetTileDesigner.cs -------------------------------------------------------------------------------- /MetroSet UI/Design/MetroSetToolTipDesigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Design/MetroSetToolTipDesigner.cs -------------------------------------------------------------------------------- /MetroSet UI/Design/MetroSetTrackBarDesigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Design/MetroSetTrackBarDesigner.cs -------------------------------------------------------------------------------- /MetroSet UI/Design/StyleManagerDesigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Design/StyleManagerDesigner.cs -------------------------------------------------------------------------------- /MetroSet UI/Enums/BageAlign.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Enums/BageAlign.cs -------------------------------------------------------------------------------- /MetroSet UI/Enums/CheckState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Enums/CheckState.cs -------------------------------------------------------------------------------- /MetroSet UI/Enums/DividerStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Enums/DividerStyle.cs -------------------------------------------------------------------------------- /MetroSet UI/Enums/EasingType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Enums/EasingType.cs -------------------------------------------------------------------------------- /MetroSet UI/Enums/MouseSates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Enums/MouseSates.cs -------------------------------------------------------------------------------- /MetroSet UI/Enums/ProgressOrientation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Enums/ProgressOrientation.cs -------------------------------------------------------------------------------- /MetroSet UI/Enums/ScrollOrientation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Enums/ScrollOrientation.cs -------------------------------------------------------------------------------- /MetroSet UI/Enums/SignStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Enums/SignStyle.cs -------------------------------------------------------------------------------- /MetroSet UI/Enums/Style.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Enums/Style.cs -------------------------------------------------------------------------------- /MetroSet UI/Enums/TabStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Enums/TabStyle.cs -------------------------------------------------------------------------------- /MetroSet UI/Enums/TextAlign.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Enums/TextAlign.cs -------------------------------------------------------------------------------- /MetroSet UI/Enums/TileAlign.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Enums/TileAlign.cs -------------------------------------------------------------------------------- /MetroSet UI/Extensions/Global Font.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Extensions/Global Font.cs -------------------------------------------------------------------------------- /MetroSet UI/Extensions/GraphicsQuality.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Extensions/GraphicsQuality.cs -------------------------------------------------------------------------------- /MetroSet UI/Extensions/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Extensions/Methods.cs -------------------------------------------------------------------------------- /MetroSet UI/Extensions/MetroSetFonts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Extensions/MetroSetFonts.cs -------------------------------------------------------------------------------- /MetroSet UI/Extensions/Utilites.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Extensions/Utilites.cs -------------------------------------------------------------------------------- /MetroSet UI/Forms/MetroSetForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Forms/MetroSetForm.cs -------------------------------------------------------------------------------- /MetroSet UI/Forms/MetroSetForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Forms/MetroSetForm.resx -------------------------------------------------------------------------------- /MetroSet UI/Forms/MetroSetMessageBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Forms/MetroSetMessageBox.cs -------------------------------------------------------------------------------- /MetroSet UI/Interfaces/IMetroForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Interfaces/IMetroForm.cs -------------------------------------------------------------------------------- /MetroSet UI/Interfaces/IMetroSetControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Interfaces/IMetroSetControl.cs -------------------------------------------------------------------------------- /MetroSet UI/Interfaces/MetroSetControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Interfaces/MetroSetControl.cs -------------------------------------------------------------------------------- /MetroSet UI/Interfaces/MetroSetForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Interfaces/MetroSetForm.cs -------------------------------------------------------------------------------- /MetroSet UI/MetroSet UI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/MetroSet UI.csproj -------------------------------------------------------------------------------- /MetroSet UI/MetroSetUI.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/MetroSetUI.ico -------------------------------------------------------------------------------- /MetroSet UI/Native/User32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Native/User32.cs -------------------------------------------------------------------------------- /MetroSet UI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MetroSet UI/Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Properties/PublishProfiles/FolderProfile.pubxml -------------------------------------------------------------------------------- /MetroSet UI/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /MetroSet UI/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Properties/Resources.resx -------------------------------------------------------------------------------- /MetroSet UI/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /MetroSet UI/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Properties/Settings.settings -------------------------------------------------------------------------------- /MetroSet UI/Resources/Alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Resources/Alert.png -------------------------------------------------------------------------------- /MetroSet UI/Resources/Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Resources/Button.png -------------------------------------------------------------------------------- /MetroSet UI/Resources/CheckBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Resources/CheckBox.png -------------------------------------------------------------------------------- /MetroSet UI/Resources/CircleProgress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Resources/CircleProgress.png -------------------------------------------------------------------------------- /MetroSet UI/Resources/ComoBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Resources/ComoBox.png -------------------------------------------------------------------------------- /MetroSet UI/Resources/ControlButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Resources/ControlButton.png -------------------------------------------------------------------------------- /MetroSet UI/Resources/Form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Resources/Form.png -------------------------------------------------------------------------------- /MetroSet UI/Resources/Label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Resources/Label.png -------------------------------------------------------------------------------- /MetroSet UI/Resources/LinkLabel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Resources/LinkLabel.png -------------------------------------------------------------------------------- /MetroSet UI/Resources/ListBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Resources/ListBox.png -------------------------------------------------------------------------------- /MetroSet UI/Resources/MetroSet Theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Resources/MetroSet Theme.xml -------------------------------------------------------------------------------- /MetroSet UI/Resources/Progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Resources/Progress.png -------------------------------------------------------------------------------- /MetroSet UI/Resources/RadioButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Resources/RadioButton.png -------------------------------------------------------------------------------- /MetroSet UI/Resources/Rate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Resources/Rate.png -------------------------------------------------------------------------------- /MetroSet UI/Resources/RitchTextBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Resources/RitchTextBox.png -------------------------------------------------------------------------------- /MetroSet UI/Resources/SegoeWP-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Resources/SegoeWP-Bold.ttf -------------------------------------------------------------------------------- /MetroSet UI/Resources/SegoeWP-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Resources/SegoeWP-Light.ttf -------------------------------------------------------------------------------- /MetroSet UI/Resources/SegoeWP-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Resources/SegoeWP-Semibold.ttf -------------------------------------------------------------------------------- /MetroSet UI/Resources/SegoeWP-Semilight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Resources/SegoeWP-Semilight.ttf -------------------------------------------------------------------------------- /MetroSet UI/Resources/SegoeWP.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Resources/SegoeWP.ttf -------------------------------------------------------------------------------- /MetroSet UI/Resources/Slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Resources/Slider.png -------------------------------------------------------------------------------- /MetroSet UI/Resources/Switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Resources/Switch.png -------------------------------------------------------------------------------- /MetroSet UI/Resources/TextBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Resources/TextBox.png -------------------------------------------------------------------------------- /MetroSet UI/Resources/Toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet UI/Resources/Toggle.png -------------------------------------------------------------------------------- /MetroSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSet.png -------------------------------------------------------------------------------- /MetroSetUI.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/MetroSetUI.ico -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N-a-r-w-i-n/MetroSet-UI/HEAD/README.md --------------------------------------------------------------------------------