I have managed to customise the L&F for much of the xamDataGrid but I am stuck at the point where I need to do the same for the scrollbars. Is this customisation at all possible and if so how?
Graham
Hi, I have the sam problem as u had, but you find the answer. I made my own scroll template witch looks just fine, but when i use it on xamDataGrid scroolbar is displayed with my style but there is no data in xamDataGrid. So if it isnt a bother to u, just put attacment of sample on this post. Thanks
Hi Alex,
It was just a little more work than that :-) I had to "override" the igDP:RecordListControl and add my template with:
<
ScrollViewer Template="{DynamicResource HelabaScrollViewerTemplate}"
That did it nicely and all within my own custom Theme.
Hello Graham,
The ScrollBars are built-in elements, so creating a style for them will change their look and be able to customize them.
Maybe something like this:
http://msdn.microsoft.com/en-us/library/ms742878(VS.85).aspx
Alex.