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.
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.
thanks for your assistance,
regard the ScrollBar and ScrollViewer i managed to retemplate control and it works perfectly.
regard the FilterArea, it is essential for me to find solution for that otherwise it will force me to find other solution that fits touch screen.
what i need is sample of retemplating FilterCellValuePresenter i beleive, to see how can i expand the selector and ComboBox filter selection.
thanks in advance,