When I use WPF Ribbon designer if I create a ribbon tab and try to place a RibbonButton on it the RibbonButton remains stuck to the bottom of the tab.
The code that I use is this: –
<RibbonTab
Header="First"
Foreground="#FFF9E33B"
VerticalAlignment="Top"
HorizontalAlignment="Left"
Width="511"
Background="#FFD2B48C"
Height="90">
<RibbonButton
Content="RibbonButton"
Width="75"
Background="#FF40E0D0"
HorizontalContentAlignment="Left"
VerticalContentAlignment="Top"
VerticalAlignment="Top"
Height="19" />
<RibbonCheckBox
RenderTransformOrigin="0.7105,-1.8125"
Height="15" />
</RibbonTab>