Tagged Questions
0
votes
0answers
112 views
ScrollViewer width in TreeView row not correct after node expand
I have a TreeView where each subnode has a grid with two columns. In the first column, there is a ScrollViewer (because the text can be very long). I want the right side of this ScrollViewer align ...
3
votes
1answer
745 views
TreeView Index - ScrollIntoView?
I've got a TreeView in a WPF Application which has an Index that is changed outside of the TreeView itself.
How can I use a ScrollIntoView (such a function like for DataGrid) option for such a ...
0
votes
2answers
1k views
Why is mouse wheel scrolling gone in a ScrollViewer?
I am adding a ScrollViewer around my TreeView for 2 reasons:
i want more control over the way my TreeView scroll bar looks
i want more control over my TreeView scroll bars position, because i want ...
0
votes
1answer
180 views
Prevent a scrollviewer from refocusing to the left after expanding a child in a treeview
I have a customized TreeView inside a ScrollViewer (I needed to overwrite the template for this application).
The treeviewitems have two columns. One for the togglebutton and the other for the ...
0
votes
1answer
686 views
scrollviewer issue with tabcontrol
I am struggling with a weird scrollviewer issue in tab control.
One of my xaml page having a tabcontol and again tab item will contain a xaml with another tab control. Inside the second tab control ...
4
votes
1answer
2k views
WPF Remove ScrollViewer from TreeView
I was wondeirng if its possible to turn off the treeview's scrollviewer easily. I have a user controil with a grid and one of the cells has a few treeviews inside of a stackpanel. the height of the ...
2
votes
2answers
1k views
Silverlight TreeView ScrollViewer Issue
Hey SO, got a question about the TreeView control in Silverlight.
I have an application which dynamically adds elements to a treeview. Some of the elements are long enough to require horizontal ...
1
vote
1answer
363 views
WPF ScrollViewer in other controls
When I have a control like a WPF Treeview,
Naturally when the contents of that treeview exceed the maximum height or width a scroll appears.
Is there a way to obtain that scroll to move it or disable ...
0
votes
1answer
956 views
Wpf TreeView's ScrollViewer Adjustment
I am using a Wpf TreeView, in which I am adding nodes at runtime. Some times tree goes bigger and ScrollViewer comes into picture(that is part of TreeView's ControlTemplate). But everytime I add a ...
4
votes
2answers
3k views
Scrolling to selected Treeviewitem within a scrollview
I have a scrollviewer wrapping a treeview.
I populate the treeview programmatically (it is not bound), and expand the treeview to a predetermined treeviewitem. That all works fine.
My problem ...