Allow the user to manually set the position of the OutlookBarItem : ActiveArea, MinimizedArea or OverflowArea
The control is not translated in German Reason for declination: The XAML team has recently reviewed this issue and it cannot be reproduced by following the described steps in our help: http://docs.telerik.com/devtools/silverlight/common-localization.html#localization-using-built-in-resources If you still encounter this issue and it is blocking for your work please contact us through the support ticketing system with details on your setup and a reference to this item.
Add a tooltip to the OutlookBarItems when the OutlookBar is minimized
Approach to implement:
Descriptions of the minimized RadOutlookBarItems can be achieved in WPF via:
<Style TargetType="telerik:RadOutlookBarItem" BasedOn="{StaticResource RadOutlookBarItemStyle}">
<Style.Triggers>
<DataTrigger Binding="{Binding RelativeSource={RelativeSource AncestorType={x:Type telerik:RadOutlookBar}}, Path=IsMinimized}" Value="True">
<Setter Property="ToolTipService.ToolTip" Value="{Binding RelativeSource={RelativeSource Self}, Path=Header}" />
</DataTrigger>
</Style.Triggers>
</Style>
or by adding this trigger to the RadOutlookBarItem's ControlTemplate.Triggers
Collapse bar to a slim version, reorganizing the icons to be vertical without description but with hover over descriptions.
Approach to implement:
RadOutlookBar is minimizable by default.
Descriptions of the minimized RadOutlookBarItems can be achieved in WPF via:
<Style TargetType="telerik:RadOutlookBarItem" BasedOn="{StaticResource RadOutlookBarItemStyle}">
<Style.Triggers>
<DataTrigger Binding="{Binding RelativeSource={RelativeSource AncestorType={x:Type telerik:RadOutlookBar}}, Path=IsMinimized}" Value="True">
<Setter Property="ToolTipService.ToolTip" Value="{Binding RelativeSource={RelativeSource Self}, Path=Header}" />
</DataTrigger>
</Style.Triggers>
</Style>
or by adding this trigger to the RadOutlookBarItem's ControlTemplate.Triggers
Tab navigation is not working inside OutlookBar. DECLINED: Duplicated with https://feedback.telerik.com/Project/143/Feedback/Details/113083-outlookbar-tab-navigation-is-not-working