I have a user control with the following XAML: <ScrollViewer> <ListBox ItemsSource=\"{Binding Items}\">
I have two grids overlaying one another, and the top layer is in a ScrollViewer.开发者_开发问答 The problem is the bottom layer has click events, and they don\'t get triggered with the ScrollViewer th
In Silverlight 4, is there a waythat whenever you page down a ScrollViewer (i.e click the scroll bar in the area adjacent to the thumb) whatever item is at the top is completely visible.I still need i
The structure of my wpf application is like: <Scrollviewer> <Grid>开发者_如何学运维;
Is there a way to reset the Horizontal ScrollViewer of the DataGrid back to all the way on the left?I have it hooked up 开发者_JAVA百科to another control where plots get refreshed.It would be nice if
We had issue with the Scrolling of the WPF datagrid. With some analysis found the ScrollViewer.CanContentScroll = true was the culprit. Removing and making it false, the scrolling issue was fixed. BUT
This is a bit of a weird one, so I was hoping maybe someone else has come across this as well, and maybe knows how to solve it.
What I want: I would like to have a ScrollView in my Silverlight 4 application which grows in Height together with the content, but does show a scrollbar if it would otherwise grow heigher than its co
Consider first version of code (MainWindow.xaml): <ScrollViewer> <local:CustomControl1 Width=\"1000\" Height=\"1000\" Background=\"Red\"/>
Silverlight project with tabcontrol hosting canvas objects. I want to wrap my entire tabcontrol with a scrollviewer so that on a short display you can scroll vertically to see the whole area on my can