This is a migrated thread and some comments may be shown as answers.

No vertical dragging bar

1 Answer 48 Views
OutlookBar
This is a migrated thread and some comments may be shown as answers.
Steven
Top achievements
Rank 1
Steven asked on 09 Nov 2011, 05:21 PM
Hi,

Is it possible to disable the "vertical dragging bar" that has the following tooltip message :

"Start draggin in order to change items' position " ?

Thanks,
S

1 Answer, 1 is accepted

Sort by
0
Tina Stancheva
Telerik team
answered on 14 Nov 2011, 11:01 AM
Hello Steven,

The RadOutlookBar control exposes a HorizontalSplitterStyle property that allows you to define a custom style for the splitter that you refer to. Using this style you can disable to splitter element:
<Style TargetType="Thumb" x:Key="MyHorizontalSplitterStyle">
    <Setter Property="IsEnabled" Value="False" />
</Style>
Or you can control its Visibility:
<Style TargetType="Thumb" x:Key="MyHorizontalSplitterStyle">
     <Setter Property="Visibility" Value="Collapsed" />
</Style>

And then you can set the MyHorizontalSplitterStyle in the RadOutlookBar definition:
<telerik:RadOutlookBar
        HorizontalAlignment="Center"
        ItemsSource="{Binding ItemsCollection}"
        HorizontalSplitterStyle="{StaticResource MyHorizontalSplitterStyle}">
    ...
</telerik:RadOutlookBar>
Give this a try and let us know if it helps.

Greetings,
Tina Stancheva
the Telerik team

Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get it now >>

Tags
OutlookBar
Asked by
Steven
Top achievements
Rank 1
Answers by
Tina Stancheva
Telerik team
Share this question
or