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
155
how to expand the selector and scroll viewer\bar in simple way?
posted

i'm building application for touch screen, and obviously all components should be large enough to be friendly user.

i can't find the way to expand the scroll bar in XamDataGrid and also the filter Area scroll bar and selectors.

help is important and highly appruciated.

Parents
  • 138253
    Offline posted

    Hello,

     

    Thank you for your post. I have been looking through it and I suggest you use the following style for the ScrollBar in order to make it bigger:

     

    <Style TargetType="{x:Type ScrollBar}">
    <Style.Triggers>
        <Trigger Property="Orientation" Value="Vertical">
            <Setter Property="Width" Value="30"/>
        </Trigger>
        <Trigger Property="Orientation" Value="Horizontal">
            <Setter Property="Height" Value="30"/>
        </Trigger>
    </Style.Triggers>
    </Style>
    

     

    As for the RecordSelector I can say that it is a very complicated control and it is not easy to set its Width and Height. If you want to do so you can retemplate it. I also can create a feature request on your behalf if you want.

     

    Looking forward for your reply.

Reply Children