This question is locked. New answers and comments are not allowed.
I've been working for a while with ribbon control but we did not have to implement resizing. Now I am adding additional properties to existing RibbonView to make it resizable but it does not resize. We are using 2012.1.326.1050 version of controls. I notices that DefaultPriority property is not available for a RibbonGroup, although I see it in your examples.
Here is a snippet of RibbonView with the first Group. Any advice would be greatly appreciated.
<telerik:RadRibbonView Grid.ColumnSpan="4" ApplicationButtonVisibility="Collapsed" TitleBarVisibility="Collapsed" BorderThickness="0" x:Name="rrbMenu" CollapseThresholdSize="10,10" >
<telerik:RadRibbonTab Header="Home" x:Name="rbHome" HeaderVisibility="Collapsed" Visibility="Visible">
<telerik:RadRibbonGroup Header="Package" x:Name="rrgPackage">
<telerik:RadRibbonGroup.Variants>
<telerik:GroupVariant Priority="20" Variant="Large" />
<telerik:GroupVariant Priority="15" Variant="Medium" />
<telerik:GroupVariant Priority="10" Variant="Small" />
<telerik:GroupVariant Priority="5" Variant="Collapsed" />
</telerik:RadRibbonGroup.Variants>
<telerik:RadCollapsiblePanel >
<telerik:RadRibbonButton LargeImage="/EatonEG.DocGen.UI;component/Images/save.64.png" Text="Save" IsAutoSize="True"
SmallImage ="/EatonEG.DocGen.UI;component/Images/save.16.png" Size="Large"
Command="{Binding ElementName=LayoutRoot, Path=DataContext.SaveCommand}" CommandParameter="{Binding PackageIdentifier}"
CollapseToMedium="WhenGroupIsMedium" CollapseToSmall="WhenGroupIsSmall">
<ToolTipService.ToolTip>
<ToolTip Style="{StaticResource ToolTipStyle}" Content="Save Package"/>
</ToolTipService.ToolTip>
</telerik:RadRibbonButton>
<telerik:RadRibbonButton LargeImage="/EatonEG.DocGen.UI;component/Images/undo.green.16.png" Text="Reset" IsAutoSize="True" Size="Large"
Command="{Binding ElementName=LayoutRoot, Path=DataContext.ResetCommand}" CommandParameter="{Binding PackageIdentifier}"
CollapseToMedium="WhenGroupIsMedium" CollapseToSmall="WhenGroupIsSmall">
<ToolTipService.ToolTip>
<ToolTip Style="{StaticResource ToolTipStyle}" Content="Reset Package"/>
</ToolTipService.ToolTip>
</telerik:RadRibbonButton>
</telerik:RadCollapsiblePanel>
</telerik:RadRibbonGroup>
Here is a snippet of RibbonView with the first Group. Any advice would be greatly appreciated.
<telerik:RadRibbonView Grid.ColumnSpan="4" ApplicationButtonVisibility="Collapsed" TitleBarVisibility="Collapsed" BorderThickness="0" x:Name="rrbMenu" CollapseThresholdSize="10,10" >
<telerik:RadRibbonTab Header="Home" x:Name="rbHome" HeaderVisibility="Collapsed" Visibility="Visible">
<telerik:RadRibbonGroup Header="Package" x:Name="rrgPackage">
<telerik:RadRibbonGroup.Variants>
<telerik:GroupVariant Priority="20" Variant="Large" />
<telerik:GroupVariant Priority="15" Variant="Medium" />
<telerik:GroupVariant Priority="10" Variant="Small" />
<telerik:GroupVariant Priority="5" Variant="Collapsed" />
</telerik:RadRibbonGroup.Variants>
<telerik:RadCollapsiblePanel >
<telerik:RadRibbonButton LargeImage="/EatonEG.DocGen.UI;component/Images/save.64.png" Text="Save" IsAutoSize="True"
SmallImage ="/EatonEG.DocGen.UI;component/Images/save.16.png" Size="Large"
Command="{Binding ElementName=LayoutRoot, Path=DataContext.SaveCommand}" CommandParameter="{Binding PackageIdentifier}"
CollapseToMedium="WhenGroupIsMedium" CollapseToSmall="WhenGroupIsSmall">
<ToolTipService.ToolTip>
<ToolTip Style="{StaticResource ToolTipStyle}" Content="Save Package"/>
</ToolTipService.ToolTip>
</telerik:RadRibbonButton>
<telerik:RadRibbonButton LargeImage="/EatonEG.DocGen.UI;component/Images/undo.green.16.png" Text="Reset" IsAutoSize="True" Size="Large"
Command="{Binding ElementName=LayoutRoot, Path=DataContext.ResetCommand}" CommandParameter="{Binding PackageIdentifier}"
CollapseToMedium="WhenGroupIsMedium" CollapseToSmall="WhenGroupIsSmall">
<ToolTipService.ToolTip>
<ToolTip Style="{StaticResource ToolTipStyle}" Content="Reset Package"/>
</ToolTipService.ToolTip>
</telerik:RadRibbonButton>
</telerik:RadCollapsiblePanel>
</telerik:RadRibbonGroup>