├── .gitignore ├── DropDownButtonLibLogo.png ├── LICENSE.md ├── README.md ├── appveyor.yml └── source ├── CleanAll.bat ├── DropDownButtonLib ├── AssemblyInfo.cs ├── Command │ └── RelayCommand.cs ├── Controls │ ├── Chromes │ │ ├── ButtonChrome.cs │ │ ├── ButtonChrome.xaml │ │ └── ButtonChrome_Metro.xaml │ ├── DropDownButton.xaml │ ├── DropDownButton.xaml.cs │ ├── DropDownItemsButton.xaml │ ├── DropDownItemsButton.xaml.cs │ ├── SplitButton.xaml │ ├── SplitButton.xaml.cs │ ├── SplitItemsButton.xaml │ └── SplitItemsButton.xaml.cs ├── Converters │ └── InverseBoolConverter.cs ├── DropDownButtonLib.csproj ├── DropDownButtonLib.csproj.user ├── Readme.md ├── Themes │ ├── DarkBrushes.xaml │ ├── Generic.xaml │ ├── LightBrushes.xaml │ ├── MetroDark.xaml │ ├── MetroLight.xaml │ └── ResourceKeys.cs ├── Utilities │ └── KeyboardUtilities.cs └── ViewModels │ ├── Base │ └── BaseViewModel.cs │ ├── DropDownButtonViewModel.cs │ ├── DropDownItemsButtonViewModel.cs │ ├── Items │ └── ItemsItemViewModel.cs │ ├── SplitButtonViewModel.cs │ └── SplitItemsButtonViewModel.cs ├── DropDownButtonLib_Source.txt ├── DropDownButtonTest.sln └── DropDownButtonTest ├── App.config ├── App.xaml ├── App.xaml.cs ├── DropDownButtonTest.csproj ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── ViewModels └── AppViewModel.cs └── Views ├── BindingProxy.cs ├── DemoView.xaml ├── DemoView.xaml.cs └── DemoViewModel.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/DropDownButtonLib/HEAD/.gitignore -------------------------------------------------------------------------------- /DropDownButtonLibLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/DropDownButtonLib/HEAD/DropDownButtonLibLogo.png -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/DropDownButtonLib/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/DropDownButtonLib/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/DropDownButtonLib/HEAD/appveyor.yml -------------------------------------------------------------------------------- /source/CleanAll.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/DropDownButtonLib/HEAD/source/CleanAll.bat -------------------------------------------------------------------------------- /source/DropDownButtonLib/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/DropDownButtonLib/HEAD/source/DropDownButtonLib/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/DropDownButtonLib/Command/RelayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/DropDownButtonLib/HEAD/source/DropDownButtonLib/Command/RelayCommand.cs -------------------------------------------------------------------------------- /source/DropDownButtonLib/Controls/Chromes/ButtonChrome.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/DropDownButtonLib/HEAD/source/DropDownButtonLib/Controls/Chromes/ButtonChrome.cs -------------------------------------------------------------------------------- /source/DropDownButtonLib/Controls/Chromes/ButtonChrome.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/DropDownButtonLib/HEAD/source/DropDownButtonLib/Controls/Chromes/ButtonChrome.xaml -------------------------------------------------------------------------------- /source/DropDownButtonLib/Controls/Chromes/ButtonChrome_Metro.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/DropDownButtonLib/HEAD/source/DropDownButtonLib/Controls/Chromes/ButtonChrome_Metro.xaml -------------------------------------------------------------------------------- /source/DropDownButtonLib/Controls/DropDownButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/DropDownButtonLib/HEAD/source/DropDownButtonLib/Controls/DropDownButton.xaml -------------------------------------------------------------------------------- /source/DropDownButtonLib/Controls/DropDownButton.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/DropDownButtonLib/HEAD/source/DropDownButtonLib/Controls/DropDownButton.xaml.cs -------------------------------------------------------------------------------- /source/DropDownButtonLib/Controls/DropDownItemsButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/DropDownButtonLib/HEAD/source/DropDownButtonLib/Controls/DropDownItemsButton.xaml -------------------------------------------------------------------------------- /source/DropDownButtonLib/Controls/DropDownItemsButton.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/DropDownButtonLib/HEAD/source/DropDownButtonLib/Controls/DropDownItemsButton.xaml.cs -------------------------------------------------------------------------------- /source/DropDownButtonLib/Controls/SplitButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/DropDownButtonLib/HEAD/source/DropDownButtonLib/Controls/SplitButton.xaml -------------------------------------------------------------------------------- /source/DropDownButtonLib/Controls/SplitButton.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/DropDownButtonLib/HEAD/source/DropDownButtonLib/Controls/SplitButton.xaml.cs -------------------------------------------------------------------------------- /source/DropDownButtonLib/Controls/SplitItemsButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/DropDownButtonLib/HEAD/source/DropDownButtonLib/Controls/SplitItemsButton.xaml -------------------------------------------------------------------------------- /source/DropDownButtonLib/Controls/SplitItemsButton.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/DropDownButtonLib/HEAD/source/DropDownButtonLib/Controls/SplitItemsButton.xaml.cs -------------------------------------------------------------------------------- /source/DropDownButtonLib/Converters/InverseBoolConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/DropDownButtonLib/HEAD/source/DropDownButtonLib/Converters/InverseBoolConverter.cs -------------------------------------------------------------------------------- /source/DropDownButtonLib/DropDownButtonLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/DropDownButtonLib/HEAD/source/DropDownButtonLib/DropDownButtonLib.csproj -------------------------------------------------------------------------------- /source/DropDownButtonLib/DropDownButtonLib.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/DropDownButtonLib/HEAD/source/DropDownButtonLib/DropDownButtonLib.csproj.user -------------------------------------------------------------------------------- /source/DropDownButtonLib/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/DropDownButtonLib/HEAD/source/DropDownButtonLib/Readme.md -------------------------------------------------------------------------------- /source/DropDownButtonLib/Themes/DarkBrushes.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/DropDownButtonLib/HEAD/source/DropDownButtonLib/Themes/DarkBrushes.xaml -------------------------------------------------------------------------------- /source/DropDownButtonLib/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/DropDownButtonLib/HEAD/source/DropDownButtonLib/Themes/Generic.xaml -------------------------------------------------------------------------------- /source/DropDownButtonLib/Themes/LightBrushes.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/DropDownButtonLib/HEAD/source/DropDownButtonLib/Themes/LightBrushes.xaml -------------------------------------------------------------------------------- /source/DropDownButtonLib/Themes/MetroDark.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/DropDownButtonLib/HEAD/source/DropDownButtonLib/Themes/MetroDark.xaml -------------------------------------------------------------------------------- /source/DropDownButtonLib/Themes/MetroLight.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/DropDownButtonLib/HEAD/source/DropDownButtonLib/Themes/MetroLight.xaml -------------------------------------------------------------------------------- /source/DropDownButtonLib/Themes/ResourceKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/DropDownButtonLib/HEAD/source/DropDownButtonLib/Themes/ResourceKeys.cs -------------------------------------------------------------------------------- /source/DropDownButtonLib/Utilities/KeyboardUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/DropDownButtonLib/HEAD/source/DropDownButtonLib/Utilities/KeyboardUtilities.cs -------------------------------------------------------------------------------- /source/DropDownButtonLib/ViewModels/Base/BaseViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/DropDownButtonLib/HEAD/source/DropDownButtonLib/ViewModels/Base/BaseViewModel.cs -------------------------------------------------------------------------------- /source/DropDownButtonLib/ViewModels/DropDownButtonViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/DropDownButtonLib/HEAD/source/DropDownButtonLib/ViewModels/DropDownButtonViewModel.cs -------------------------------------------------------------------------------- /source/DropDownButtonLib/ViewModels/DropDownItemsButtonViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/DropDownButtonLib/HEAD/source/DropDownButtonLib/ViewModels/DropDownItemsButtonViewModel.cs -------------------------------------------------------------------------------- /source/DropDownButtonLib/ViewModels/Items/ItemsItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/DropDownButtonLib/HEAD/source/DropDownButtonLib/ViewModels/Items/ItemsItemViewModel.cs -------------------------------------------------------------------------------- /source/DropDownButtonLib/ViewModels/SplitButtonViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/DropDownButtonLib/HEAD/source/DropDownButtonLib/ViewModels/SplitButtonViewModel.cs -------------------------------------------------------------------------------- /source/DropDownButtonLib/ViewModels/SplitItemsButtonViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/DropDownButtonLib/HEAD/source/DropDownButtonLib/ViewModels/SplitItemsButtonViewModel.cs -------------------------------------------------------------------------------- /source/DropDownButtonLib_Source.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/DropDownButtonLib/HEAD/source/DropDownButtonLib_Source.txt -------------------------------------------------------------------------------- /source/DropDownButtonTest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/DropDownButtonLib/HEAD/source/DropDownButtonTest.sln -------------------------------------------------------------------------------- /source/DropDownButtonTest/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/DropDownButtonLib/HEAD/source/DropDownButtonTest/App.config -------------------------------------------------------------------------------- /source/DropDownButtonTest/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/DropDownButtonLib/HEAD/source/DropDownButtonTest/App.xaml -------------------------------------------------------------------------------- /source/DropDownButtonTest/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/DropDownButtonLib/HEAD/source/DropDownButtonTest/App.xaml.cs -------------------------------------------------------------------------------- /source/DropDownButtonTest/DropDownButtonTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/DropDownButtonLib/HEAD/source/DropDownButtonTest/DropDownButtonTest.csproj -------------------------------------------------------------------------------- /source/DropDownButtonTest/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/DropDownButtonLib/HEAD/source/DropDownButtonTest/MainWindow.xaml -------------------------------------------------------------------------------- /source/DropDownButtonTest/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/DropDownButtonLib/HEAD/source/DropDownButtonTest/MainWindow.xaml.cs -------------------------------------------------------------------------------- /source/DropDownButtonTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/DropDownButtonLib/HEAD/source/DropDownButtonTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/DropDownButtonTest/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/DropDownButtonLib/HEAD/source/DropDownButtonTest/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /source/DropDownButtonTest/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/DropDownButtonLib/HEAD/source/DropDownButtonTest/Properties/Resources.resx -------------------------------------------------------------------------------- /source/DropDownButtonTest/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/DropDownButtonLib/HEAD/source/DropDownButtonTest/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /source/DropDownButtonTest/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/DropDownButtonLib/HEAD/source/DropDownButtonTest/Properties/Settings.settings -------------------------------------------------------------------------------- /source/DropDownButtonTest/ViewModels/AppViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/DropDownButtonLib/HEAD/source/DropDownButtonTest/ViewModels/AppViewModel.cs -------------------------------------------------------------------------------- /source/DropDownButtonTest/Views/BindingProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/DropDownButtonLib/HEAD/source/DropDownButtonTest/Views/BindingProxy.cs -------------------------------------------------------------------------------- /source/DropDownButtonTest/Views/DemoView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/DropDownButtonLib/HEAD/source/DropDownButtonTest/Views/DemoView.xaml -------------------------------------------------------------------------------- /source/DropDownButtonTest/Views/DemoView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/DropDownButtonLib/HEAD/source/DropDownButtonTest/Views/DemoView.xaml.cs -------------------------------------------------------------------------------- /source/DropDownButtonTest/Views/DemoViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirkster99/DropDownButtonLib/HEAD/source/DropDownButtonTest/Views/DemoViewModel.cs --------------------------------------------------------------------------------