Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1921
Scrollbar at Left side for Grid
posted

Alex,

Is there any possible to move the scrollbar to Left side?

(content should be normal).

 

by

Ramesh.p

Parents
  • 69686
    posted

    Ramesh,

    This is possible with this style:

    <Style TargetType="{x:Type igDP:RecordListControl}">

                        <Setter Property="Template">

                            <Setter.Value>

                                <ControlTemplate TargetType="{x:Type igDP:RecordListControl}">

                                    <ScrollViewer FlowDirection="RightToLeft"

                            RenderTransform="{TemplateBinding FixedNearElementTransform}"

                                        CanContentScroll="true"

                                        Focusable="false" HorizontalScrollBarVisibility="Visible"

                                        VerticalScrollBarVisibility="Visible" >

                                        <ItemsPresenter FlowDirection="LeftToRight" RenderTransform="{TemplateBinding ScrollableElementTransform}"/>

                                    </ScrollViewer>

                                </ControlTemplate>

                            </Setter.Value>

                        </Setter>

                    </Style>

    Please let me know if that works in your scenario.

Reply Children