Allow the user to manually set the position of the OutlookBarItem : ActiveArea, MinimizedArea or OverflowArea
private
void
FavouritesBar_Loaded(
object
sender, RoutedEventArgs e)
{
Dispatcher.BeginInvoke(
new
Action(() =>
{
this
.FavouritesBar.IsContentPreserved =
true
;
}), (DispatcherPriority)3);
}
The style of the items that are contained in the dropdown content of the overflow button cannot be edited.
The Metro theme isn't properly applied on the RadOutlookBarItems if it is set in the RadOutlookBar definition: <telerik:RadOutlookBar telerik:StyleManager.Theme="Metro" />
As a workaround, you can add a custom Margin and Padding to the MinimizedOutlookBarItems: <Style TargetType="outlookBarPrimitives:MinimizedOutlookBarItem"> <Setter Property="Padding" Value="5" /> <Setter Property="Margin" Value="2" /> </Style> Where xmlns:outlookBarPrimitives="clr-namespace:Telerik.Windows.Controls.OutlookBar;assembly=Telerik.Windows.Controls.Navigation".
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
The logic of the IsContentPreserved (inherited from RadTabControl) property could be implemented in RadOutlookBar
Available in LIB version 2017.3.1113, it will be also available in the R1 2018 Release.
When the OutlookBar is minimized during run-time change of themes the text set to item's header overlaps the minimizing toggle button. You can work this around by creating a custom control that derives from RadOutlookBar and override its OnApplyTemplate() method. Inside the method call the protected VisualStateChanged() method. public class CustomOutlookBar : RadOutlookBar { public override void OnApplyTemplate() { base.OnApplyTemplate(); this.ChangeVisualState(false); } } Available in the R1 2017 SP1 Release.
Add the posibilty for the RadOutlookBar control to have Width less than the specified MinWidth, when Minimized.
OutlookBar: Visual state of selected items in not correct
Provide visibility enumeration for the Overflow button "WhenNeeded", "Visible", "Hidden/Collapsed"
Clicking on MinimizedOutlookBarItem when there is Visibility set to Collapsed on one of the items, the RadOutlookBar selects different item.
Currently , there is no possible way to drag an object fromt he Outlookbar's Popup and drop it outside the OutlookBar
The foreground of the content in the pop-up when the OutlookBar is minimized in Windows8 (Metro) and Windows8Touch themes is wrong - it is white like the background.
Tooltip is shown on horizontal splitter when ActiveItemsMaxCount = 0 but it shouldn't show since the splitter cannot be moved
The ActiveItemsCount is not working
There should be a way to set horizontal orientation for the items of the OutlookBar.