I am using the Ribbons Control Libary from Microsoft for WPF to privide a Ribbon in our WPF Application.
We use Splitbuttons in the following way in the XAML Part:
<r:RibbonSplitButton Label="SplitButtonLabel" LargeImageSource="..." Command="{Binding SplitButtonCommand}">
<r:RibbonSplitMenuItem Header="Item 1" ImageSource="..." Command="{Binding Command1}"/>
<r:RibbonSplitMenuItem Header="Item 2" ImageSource="..." Command="{Binding Command2}"/>
<r:RibbonSplitMenuItem Header="Item 3" ImageSource="..." Command="{Binding Command3}"/>
</r:RibbonSplitButton>
If i click on the Upper Part of the Split Button the Command SplitButtonCommand is executed once as it normally.
If I click on the Bottom Part of the SplitButton and then any Menü Item (e.g. Item 1) the Command of this Item is executed twice.
Does anyone have any clue causes the Problem?