Description
Defines a button with more options.
Typically used on search dialog boxes and navigator of the Shell main tab.
Namespace
xmlns:l="http://www.teradp.com/schemas/GN4/1/Shell/Presentation"
Members
Margin | Margin. |
Height | Height. |
Button | Button property. |
Content | Text on the button. |
Command | Command type |
CommandParameter | The script that runs when you click the button. |
Example
<l:SplitButton
Margin="2"
Height="24">
<Button
Content="New Group"
Command="{x:Static l:Commands.Script}"
CommandParameter="NavTabSearchNewGroup"
/>
<Button
Content="New Listing"
Command="{x:Static l:Commands.Script}"
CommandParameter="NavTabSearchNewListing"
/>
</l:SplitButton>