Tagged Questions
2
votes
2answers
336 views
How does WPF DataGrid get frozen rows/columns working?
I created a user control based on Grid (not DataGrid), which is wrapped in a ScrollViewer. Now I would like to have frozen rows/columns capability just like in DataGrid, but couldn't figure out how.
...
0
votes
0answers
58 views
How to bind datagrid scrollbar to another scrollviewer?
I have a datagrid containing general information and an itemsControl containing detailed information. I want to bind the vertical scrollbar of the datagrid with the scrollviewer (in the ...
0
votes
0answers
161 views
Annoying empty extra colum in DataGrid when using ScrollViewer
First, look at the width of the last column. It is "*".
Here's the xaml to reproduce the problem:
<Window x:Class="DataGridStaredColumnTest.MainWindow"
...
2
votes
0answers
241 views
Setting DataGrid ScrollViewer.IsDeferredScrollingEnabled=“True” creates issues with DataGridComboBoxColumn Scrolling
I have an application that uses a WPF DataGrid that has thousands of rows. I was having performance issues with scrolling using the Vertical ScrollBar so I did some research and found out I can defer ...
0
votes
0answers
185 views
Fixed DataGrid ScrollViewer view at the bottom
How to fix the scroll viewer position of a datagrid to the bottom position irrespective of the data in a wpf application.
0
votes
1answer
508 views
DataGrid, reset ScrollViewer to left hand side
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 to another control where plots get refreshed. It would be nice if the ...
1
vote
1answer
939 views
DataGrid scrolling issue fix leads to performance and memory issue
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 ...
0
votes
1answer
777 views
WPF DataGrid column gobbles up space faster than Ms Pac-Man
I'm trying to get a DataGrid column to fill up the remaining space for the DataGrid, when the parent control contains a ScrollViewer without having the column take far more Width than the top level ...
1
vote
2answers
332 views
DataGrids over ScrollViewer prevent it to scroll
I have multiples DataGrids disposed over a ScrollViewer.
These DataGrids have an "height: auto" property so that I can hide the scrollbar and view all the content.
The only problem is that the ...
0
votes
1answer
606 views
About re-templating correctly DataGrid
I recently had this problem about scrolling and focus changing.
I solved it by adding in my DataGrid the following:
<DataGrid.Template>
<ControlTemplate>
...
0
votes
1answer
1k views
Silverlight DataGrid scrollbar synchronization
I have 2 Silverlight DataGrids one on top of another. I want to synchronize their horizontal scrollbars.
I have tried to put them both in separate scrollviewers and set the horizontal offset of source ...
2
votes
1answer
1k views
How to make WPF DataGrid VerticalScrollBar Always Visible?
Do you knows how to make the WPF DataGrid VerticalScrollBar always visible, even if there is no data to display without putting DataGrid object instid a ScrollViewer?
4
votes
2answers
4k views
Silverlight - DataGrid in Scrollviewer, Column.Width=“*” makes datagrid take several screen-widths
When I have the following setup, the last column having a width of * causes the datagrid to create huge horizontal scrollbars (extends grid to several widths of the screen). I'm not really sure why ...
1
vote
1answer
2k views
Fix DataGrid Column Headings When Scroll Viewer is Applied
I have a DataGrid wrapped in a ScrollViewer like this...
<ScrollViewer MaxHeight="600" VerticalScrollBarVisibility="Auto"
BorderThickness="0" Padding="0">
<sdk:DataGrid ...
0
votes
2answers
198 views
How to get a ScrollViewer to be an exact height *and* show both scrollbars at all times?
I have a DataGrid inside a ScrollViewer.
I want the whole thing to only be 200 pixels high.
But this code:
<ScrollViewer x:Name="DataGridArea" Height="200">
<toolkit:DataGrid ...
