SplitButton class

Build 1501 on 14/Nov/2017  This topic last edited on: 22/Mar/2016, at 16:37

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

MarginMargin.
HeightHeight.
ButtonButton property.
ContentText on the button.
CommandCommand type
CommandParameterThe 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>