Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / Silverlight > OutlookBar > No vertical dragging bar

Not answered No vertical dragging bar

Feed from this thread
  • Steven avatar

    Posted on Nov 9, 2011 (permalink)

    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

    Reply

  • Tina Stancheva Tina Stancheva admin's avatar

    Posted on Nov 14, 2011 (permalink)

    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 >>

    Reply

Back to Top

Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / Silverlight > OutlookBar > No vertical dragging bar