Declined
Last Updated: 15 Sep 2020 07:54 by ADMIN
ADMIN
Created by: Nikolai
Comments: 1
Category: OutlookBar
Type: Feature Request
11
Allow the user to manually set the position of the OutlookBarItem : ActiveArea, MinimizedArea or OverflowArea
Declined
Last Updated: 20 Sep 2016 10:42 by ADMIN
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
Declined
Last Updated: 20 Sep 2016 10:42 by ADMIN
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