Skip to content

wanglin2019/DropDownButtonLib

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build status Release NuGet

Net4 NetCore3

 Overview

The DropDownButtonLib project supplies MVVM/WPF drop down controls that are based on a button.

There are sample screenshot on the Codeplex site from were this project is migrated from: https://dropdownbuttonlib.codeplex.com/

This project is based on the drop down control contained in the Extended WPF Toolkit™ Community Edition:https://wpftoolkit.codeplex.com/ from Xceed. It includes some bugfixes to the original implementation and extends the original controls with a:

  • DropDownButton, SplitButton with:
  • DropDownItemsButton, SplitItemsButton

controls. The original implementation (DropDownButton, SplitButton) can be used to drop down and interact with single drop down items, while the extended controls (DropDownItemsButton, SplittItemsButton) are based on an ItemsControl and can thus be with multiple drop down items (in a similar fashion as a standard WPF ComboBox or ListBox control).

DropDownButton

The DropDown button shows a drop down element that gives users a way of editing something and confirming it with Cancel or OK (this works similar to a dialog but in a drop down scenario).

SplitButton

The Split button has a drop down section and a button. The drop down element gives you a way of editing/selecting in a similar scenario as in the DropDownButton shown above, while the button itself can be used like a shortcut that refers to the last selected element.

DropDownItemsButton

The DropDown button shows a drop down element which can be used to select one element out of many. This could also be implemented with the DropDownButton control but it is much easier with this control since it already contains an ItemsControl inside the drop down element.

SplitItemsButton

The Split button has a drop down section and a button. The drop down element gives you a way of selecting from among many elements while the button itself can be used like a shortcut that refers to the last selected element.

Demo Application

This is a screenshot of the MainWindow of the included Test Application. The complete implementation is MVVM compliant and all controls are fully themeable (look-less controls).

Theming

Load Light or Dark brush resources in you resource dictionary to take advantage of existing definitions.

    <ResourceDictionary.MergedDictionaries>
        <ResourceDictionary Source="/DropDownButtonLib;component/Themes/MetroDark.xaml" />
    </ResourceDictionary.MergedDictionaries>
    <ResourceDictionary.MergedDictionaries>
        <ResourceDictionary Source="/DropDownButtonLib;component/Themes/MetroLight.xaml" />
    </ResourceDictionary.MergedDictionaries>

These definitions do not theme all controls used within this library. You should use a standard theming library, such as:

to also theme standard elements, such as, button and textblock etc.

About

The DropDownButtonLib project supplies MVVM/WPF drop down controls that are based on a button.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 99.2%
  • Batchfile 0.8%