RibbonSplitButton Constructor (String, ICommand, Object, IEnumerable<RibbonButton>, ImageSource, ImageSource)
Applies to v2.
Initializes a new instance of the RibbonSplitButton class.
Namespace: Microsoft.WebMatrix.Extensibility
Assembly: Microsoft.WebMatrix.Extensibility (in Microsoft.WebMatrix.Extensibility.dll)
Syntax
'Declaration
Public Sub New ( _
label As String, _
command As ICommand, _
commandParameter As Object, _
items As IEnumerable(Of RibbonButton), _
smallImage As ImageSource, _
largeImage As ImageSource _
)
'Usage
Dim label As String
Dim command As ICommand
Dim commandParameter As Object
Dim items As IEnumerable(Of RibbonButton)
Dim smallImage As ImageSource
Dim largeImage As ImageSource
Dim instance As New RibbonSplitButton(label, command, _
commandParameter, items, smallImage, _
largeImage)
public RibbonSplitButton(
string label,
ICommand command,
Object commandParameter,
IEnumerable<RibbonButton> items,
ImageSource smallImage,
ImageSource largeImage
)
public:
RibbonSplitButton(
String^ label,
ICommand^ command,
Object^ commandParameter,
IEnumerable<RibbonButton^>^ items,
ImageSource^ smallImage,
ImageSource^ largeImage
)
new :
label:string *
command:ICommand *
commandParameter:Object *
items:IEnumerable<RibbonButton> *
smallImage:ImageSource *
largeImage:ImageSource -> RibbonSplitButton
public function RibbonSplitButton(
label : String,
command : ICommand,
commandParameter : Object,
items : IEnumerable<RibbonButton>,
smallImage : ImageSource,
largeImage : ImageSource
)
Parameters
label
Type: System.StringLabel for the item.
command
Type: System.Windows.Input.ICommandA command to invoke when the button is pressed.
commandParameter
Type: System.ObjectA command parameter for command.
items
Type: System.Collections.Generic.IEnumerable<RibbonButton>A sequence of RibbonButtons to show when the split-button is expanded.
smallImage
Type: System.Windows.Media.ImageSourceA 16x16 image for the button.
largeImage
Type: System.Windows.Media.ImageSourceA 32x32 image for the button.