SplitButton
最后更新于
最后更新于
The SplitButton
functions as a Button
with primary and secondary parts that can each be pressed separately. The primary part behaves like normal Button
and the secondary part opens a Flyout
with additional actions.
A SplitButton
should only be composed of similar actions. Fundamentally, this control is used to group common actions together where one has clear priority over the others. The most common action should be the default and what is shown in the primary part of the SplitButton. Less-common actions should be added to the flyout which is shown when the secondary (drop down) part is pressed.
The user-selection action should be invoked immediately when pressing either the primary part or a secondary action in the flyout. All pressed actions, whether primary or secondary, are immediate.
Property | Description |
---|---|
Pseudoclass | Description |
---|---|
SplitButton (Flyout closed)
SplitButton (Flyout opened)
A common use case of a SplitButton
is for coloring text within an editor. Pressing the primary part of the SplitButton
will apply the current color to the selected text. Pressing the secondary part will open a Flyout
and allow another color to be specified and applied. Again note that when another color is specified in the Flyout
, the selected text color will immediately change and the current color will be updated as well.
Sample of SplitButton for color selection
Another common example of the SplitButton
could be an export button. When the primary part is pressed, data will be exported using default settings. However, if the secondary part is pressed, additional export options could be specified like ‘Export to PNG’, ‘Export to JPG’, etc.
Sample of a SplitButton with different export options
Content
The content to display in the primary part
Flyout
The Flyout
which shows up when the secondary part is clicked
Command
A command to be invoked when the primary button is clicked
:pressed
Set when the entire SplitButton
is pressed using a keyboard input such as Space or Enter. In this state no distinction is made between primary or secondary parts
:flyout-open
Set when the Flyout
is open