<StackPanel xmlns:telerikRibbonBar="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.RibbonBar"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:cmd="clr-namespace:Microsoft.Practices.Composite.Presentation.Commands;assembly=Microsoft.Practices.Composite.Presentation">
<telerikRibbonBar:RadRibbonBar x:Name="rbnBar"
ApplicationName="VBC Office Tool"
Margin="0"
ApplicationButtonImageSource="../AppIcon.png">
<telerikRibbonBar:RadRibbonTab Header="VBC">
<telerikRibbonBar:RadRibbonGroup Header="Clipboard">
<StackPanel Orientation="Horizontal">
<telerikRibbonBar:RadRibbonButton x:Name="btn1"
CollapseToSmall="Never"
Size="Large"
Tag="Module 1"
cmd:Click.Command="{Binding Path=RibbonCommand}"
cmd:Click.CommandParameter="{Binding Path=Tag, RelativeSource={RelativeSource Self}}"
Text="Paste">
<telerikRibbonBar:RadRibbonButton.Content>
<Image Source="../paste.png" />
</telerikRibbonBar:RadRibbonButton.Content>
</telerikRibbonBar:RadRibbonButton>
<telerikRibbonBar:RadRibbonButton x:Name="btn2"
HorizontalContentAlignment="Center"
CollapseToSmall="Never"
Size="Large"
Tag="Module 2"
cmd:Click.Command="{Binding Path=RibbonCommand}"
cmd:Click.CommandParameter="{Binding Path=Tag, RelativeSource={RelativeSource Self}}"
Text="Create Document">
<telerikRibbonBar:RadRibbonButton.Content>
<Image Source="../save.png" />
</telerikRibbonBar:RadRibbonButton.Content>
</telerikRibbonBar:RadRibbonButton>
</StackPanel>
</telerikRibbonBar:RadRibbonGroup>
</telerikRibbonBar:RadRibbonTab>
<telerikRibbonBar:RadRibbonTab Header="iRisk" />
</telerikRibbonBar:RadRibbonBar>
</StackPanel>