Hello,
in many menus I use the same buttons.
Is it possible to create a kind of a base class?
In this case it would be nice to have a base class of the complete group header "actions".
eg:
Thank you,
Manuel
in many menus I use the same buttons.
Is it possible to create a kind of a base class?
In this case it would be nice to have a base class of the complete group header "actions".
eg:
<
telerik:RadRibbonView
ApplicationButtonVisibility
=
"Collapsed"
TitleBarVisibility
=
"Collapsed"
HelpButtonVisibility
=
"Collapsed"
>
<
telerik:RadRibbonTab
Header
=
"Home"
HeaderVisibility
=
"Collapsed"
>
<
telerik:RadRibbonGroup
Header
=
"Actions"
>
<
telerik:RadRibbonButton
LargeImage
=
"{StaticResource Back}"
Text
=
"Close"
Size
=
"Large"
Command
=
"{Binding CloseViewCommand}"
/>
<
telerik:RadRibbonButton
LargeImage
=
"{StaticResource Edit}"
Text
=
"Edit"
Size
=
"Large"
Command
=
"{Binding EditItemCommand}"
/>
<
telerik:RadRibbonButton
LargeImage
=
"{StaticResource Save}"
Text
=
"Save"
Size
=
"Large"
Command
=
"{Binding SaveItemCommand}"
/>
<
telerik:RadRibbonButton
SmallImage
=
"{StaticResource Cancel}"
Text
=
"Cancel"
Size
=
"Large"
Command
=
"{Binding CancelItemCommand}"
/>
</
telerik:RadRibbonGroup
>
<
telerik:RadRibbonGroup
Header
=
"Print"
>
<
telerik:RadRibbonButton
SmallImage
=
"{StaticResource Print}"
Text
=
"xxx"
Size
=
"Large"
Command
=
"{Binding PrintItemCommand}"
/>
</
telerik:RadRibbonGroup
>
<
telerik:RadRibbonGroup
Header
=
"Extras"
>
<
telerik:RadRibbonButton
SmallImage
=
"{StaticResource UpdatePortrait}"
Text
=
"xxxxx"
Size
=
"Large"
Command
=
"{Binding UpdatePictureCommand}"
/>
</
telerik:RadRibbonGroup
>
</
telerik:RadRibbonTab
>
</
telerik:RadRibbonView
>
Thank you,
Manuel