├── .gitignore ├── README.md ├── yt_DesignUI.sln └── yt_DesignUI ├── Animation ├── Animation.cs └── Animator.cs ├── Components ├── EgoldsFormStyle.Designer.cs ├── EgoldsFormStyle.cs ├── EgoldsStyle.cs ├── RoundingButtonsComponent.Designer.cs └── RoundingButtonsComponent.cs ├── Controls ├── EgoldsCard.cs ├── EgoldsGoogleTextBox.cs ├── EgoldsProgressBar.cs ├── EgoldsRadioButton.cs ├── EgoldsToggleSwitch.cs ├── ShadowedForm.cs └── yt_Button.cs ├── Drawer.cs ├── FlatColors.cs ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── frmMain.Designer.cs ├── frmMain.cs ├── frmMain.resx └── yt_DesignUI.csproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egolds/WinFormsUserInterface/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egolds/WinFormsUserInterface/HEAD/README.md -------------------------------------------------------------------------------- /yt_DesignUI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egolds/WinFormsUserInterface/HEAD/yt_DesignUI.sln -------------------------------------------------------------------------------- /yt_DesignUI/Animation/Animation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egolds/WinFormsUserInterface/HEAD/yt_DesignUI/Animation/Animation.cs -------------------------------------------------------------------------------- /yt_DesignUI/Animation/Animator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egolds/WinFormsUserInterface/HEAD/yt_DesignUI/Animation/Animator.cs -------------------------------------------------------------------------------- /yt_DesignUI/Components/EgoldsFormStyle.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egolds/WinFormsUserInterface/HEAD/yt_DesignUI/Components/EgoldsFormStyle.Designer.cs -------------------------------------------------------------------------------- /yt_DesignUI/Components/EgoldsFormStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egolds/WinFormsUserInterface/HEAD/yt_DesignUI/Components/EgoldsFormStyle.cs -------------------------------------------------------------------------------- /yt_DesignUI/Components/EgoldsStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egolds/WinFormsUserInterface/HEAD/yt_DesignUI/Components/EgoldsStyle.cs -------------------------------------------------------------------------------- /yt_DesignUI/Components/RoundingButtonsComponent.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egolds/WinFormsUserInterface/HEAD/yt_DesignUI/Components/RoundingButtonsComponent.Designer.cs -------------------------------------------------------------------------------- /yt_DesignUI/Components/RoundingButtonsComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egolds/WinFormsUserInterface/HEAD/yt_DesignUI/Components/RoundingButtonsComponent.cs -------------------------------------------------------------------------------- /yt_DesignUI/Controls/EgoldsCard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egolds/WinFormsUserInterface/HEAD/yt_DesignUI/Controls/EgoldsCard.cs -------------------------------------------------------------------------------- /yt_DesignUI/Controls/EgoldsGoogleTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egolds/WinFormsUserInterface/HEAD/yt_DesignUI/Controls/EgoldsGoogleTextBox.cs -------------------------------------------------------------------------------- /yt_DesignUI/Controls/EgoldsProgressBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egolds/WinFormsUserInterface/HEAD/yt_DesignUI/Controls/EgoldsProgressBar.cs -------------------------------------------------------------------------------- /yt_DesignUI/Controls/EgoldsRadioButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egolds/WinFormsUserInterface/HEAD/yt_DesignUI/Controls/EgoldsRadioButton.cs -------------------------------------------------------------------------------- /yt_DesignUI/Controls/EgoldsToggleSwitch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egolds/WinFormsUserInterface/HEAD/yt_DesignUI/Controls/EgoldsToggleSwitch.cs -------------------------------------------------------------------------------- /yt_DesignUI/Controls/ShadowedForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egolds/WinFormsUserInterface/HEAD/yt_DesignUI/Controls/ShadowedForm.cs -------------------------------------------------------------------------------- /yt_DesignUI/Controls/yt_Button.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egolds/WinFormsUserInterface/HEAD/yt_DesignUI/Controls/yt_Button.cs -------------------------------------------------------------------------------- /yt_DesignUI/Drawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egolds/WinFormsUserInterface/HEAD/yt_DesignUI/Drawer.cs -------------------------------------------------------------------------------- /yt_DesignUI/FlatColors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egolds/WinFormsUserInterface/HEAD/yt_DesignUI/FlatColors.cs -------------------------------------------------------------------------------- /yt_DesignUI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egolds/WinFormsUserInterface/HEAD/yt_DesignUI/Program.cs -------------------------------------------------------------------------------- /yt_DesignUI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egolds/WinFormsUserInterface/HEAD/yt_DesignUI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /yt_DesignUI/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egolds/WinFormsUserInterface/HEAD/yt_DesignUI/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /yt_DesignUI/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egolds/WinFormsUserInterface/HEAD/yt_DesignUI/Properties/Resources.resx -------------------------------------------------------------------------------- /yt_DesignUI/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egolds/WinFormsUserInterface/HEAD/yt_DesignUI/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /yt_DesignUI/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egolds/WinFormsUserInterface/HEAD/yt_DesignUI/Properties/Settings.settings -------------------------------------------------------------------------------- /yt_DesignUI/frmMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egolds/WinFormsUserInterface/HEAD/yt_DesignUI/frmMain.Designer.cs -------------------------------------------------------------------------------- /yt_DesignUI/frmMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egolds/WinFormsUserInterface/HEAD/yt_DesignUI/frmMain.cs -------------------------------------------------------------------------------- /yt_DesignUI/frmMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egolds/WinFormsUserInterface/HEAD/yt_DesignUI/frmMain.resx -------------------------------------------------------------------------------- /yt_DesignUI/yt_DesignUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Egolds/WinFormsUserInterface/HEAD/yt_DesignUI/yt_DesignUI.csproj --------------------------------------------------------------------------------