0
votes
0answers
61 views

Can't scroll datagrid when DataGridRow is selected

I have datagrid with only one combobox column: <my:DataGrid AutoGenerateColumns="False" Name="dataGrid1"> <my:DataGrid.Columns> <my:DataGridTemplateColumn ...
1
vote
0answers
148 views

How to Scroll WPF ListBox Programmaticaly One Item Up?

I have a ListBox, in WPF, that I load songs, artists, albums and playlists into. When I click the artists button, for example, I populate the list box with each artist. When I click an artist, it ...
1
vote
1answer
42 views

Customization of scrollbar

Hi I want my combo-box to look like the above picture . I have tried a lot of ways but didn't get successful. Can anyone tell me any website or code which can style my combo-box like the above ...
0
votes
1answer
80 views

Disable scrolling if the cursor is over element

I wanted to disable the scrolling when the cursor is over an element in WPF. If the mouse is over the red rectangle, the scroll should be disabled. The red rectangle is on a scrollviewer. Any idea? ...
0
votes
1answer
411 views

WPF DataGrid not showing scrollbars and running out of visible area

Like others I have a DataGrid that is not showing scrollbars. What I think is unique to my situation is that I do not see a StackPanel anywhere in the visual or logical tree. I am using WPF Inspector ...
0
votes
0answers
74 views

TreeView jumpy scrolling

I have a virtualized TreeView with these properties: <TreeView ScrollViewer.CanContentScroll="True" VirtualizingPanel.IsVirtualizing="True" ...
0
votes
2answers
109 views

Add a scroller to an inner control

I've been through similar questions here on SO but couldn't find a solution yet. The inner control is a table: <UserControl ...
0
votes
1answer
143 views

Disable drag and drop when scrolling

I have implemented drag and drop functionality for a TreeView in WPF. All works fine but when the scrolls are shown in the tree view, if I select an item in the tree and then and try to scroll ...
1
vote
0answers
177 views

Prevent datagrid group header from horizontally scrolling

Just checked this out and it's very similar, but for vertical scrolling not horizontal. I have a datagrid with grouped data, looks like this: I just want to keep the group header information ...
0
votes
1answer
47 views

unselects the items on top when scrolling to bottom

I have a WPF listbox. The items are bound to the listbox. When I select a few items at the top of the listbox and scroll down to the bottom of the listbox to select other items, the items that were ...
0
votes
2answers
100 views

WPF: Inner content wont scroll

I have a Window with a Grid inside: <Grid KeyboardNavigation.TabNavigation="Local"> <Grid.RowDefinitions> <RowDefinition Height="Auto" MinHeight="70" /> ...
0
votes
0answers
59 views

I can't scroll user control for the first time, If not clicking scrollviewer of WPF

Basically, I can't scroll scrollviewer of WPF for the first time, If not clicking control once. I tried to use WPF API as Focus(), SetFocus Win32 API, SendMessage and PostMessage as SetCursor after ...
0
votes
1answer
91 views

Scroll to item in view, but do not scroll to view

I'm developing a WPF application, containing multiple ListView's. Every view has a button, and the user can press it to initiate a function that processes the items in the view. The item count is ...
1
vote
1answer
903 views

DataGrid throws InvalidOperationException by Scrolling

I want to show in a DataGrid the contents of a file. (The file contains more than 200,000 lines) To show the Grid with the Data is fast. But when I use the Scrollbar (for down scrolling) I've got ...
1
vote
1answer
173 views

Scrolling a ScrollViewer when Expander is expanded

I have a WPF MVVM application, in which ScrollViewer contains a user control with multiple Expanders <UserControl> <Expander> <Grid> ...
0
votes
0answers
45 views

prevent auto scrolling when item is added to the collection

I want to prevent the datagrid from auto scrolling when a new item is added to the itemsource. I've already tried this snippet but it's not working: void dgTrace_SelectionChanged(object sender, ...
0
votes
1answer
87 views

how to display a scrollable treeview control on wpf form

how to render a scrollable wpf treeview control on a window that occupies the left corner of the window and adjusts with the height of the window. I have been experimenting with Grid and dockpanel but ...
1
vote
2answers
378 views

DataGrid.ScrollIntoView() does not work, using DataGridTemplateColumn and MVVM

UserControl DataGrid XAML: <DataGrid x:Name="NamingConventionDataGrid" Width="{Binding ElementName=toolbar, Path=ActualWidth}" MinHeight="100" HorizontalAlignment="Left" ...
4
votes
1answer
142 views

WPF DataGrid - maintain scroll position after refresh

Anyone knows how to maintain the vertical scroll position after the Refresh command? My Datagrid receives binding from a List of objects. Many thanks, and sorry for my english.
0
votes
0answers
109 views

Paging ListBox in Wpf with buttons

I'm trying to set up a control (2 actually) for paging up and down in a ListBox. The Listbox is limited in size and you can only see the rest of the items if you use the scrollbar. I already have ...
0
votes
1answer
133 views

Canvas to support a scrollable stock graph

I would like to draw a graph of a stock on a canvas. The canvas has an initil size lets say 300 (height) x 1000 (Width). The stock has been trading for more days that can fit into the visual part of ...
0
votes
2answers
126 views

Annoying auto scroll of partially displayed items in WPF ListView

I have a ListView in WPF, my problem is if an item is partially displayed and I click on item, the list will automatically scroll so the whole item will be visible. How can I disable this Auto Scroll ...
1
vote
1answer
199 views

WPF Grid: Use auto height but prevent scrolling

How can I use automatic row height in a WPF Grid control but limit it to the extent that the Grid doesn't scroll altogether? Here's my UI: 1st row: Auto height, contains a label and text input (in ...
0
votes
1answer
256 views

Wpf scroll a page scrollViewer when scroll ListBox [closed]

I have a page with scrollViewer also at this page I have a listview. When I scroll the listview the scrollviewer of the page doesn't scroll. Any ideas how to get it works? For example, a ...
0
votes
1answer
326 views

How to implement scrollviewer bouncing's animation in c# and wpf?

I want to implement scrollviewer bouncing's animation in c# and wpf, like IOS's UIScrollview. When users scroll to top or end, it starts to decrease speed and bouncing. I think that google can ...
3
votes
2answers
291 views

Setting when to scroll in WPF ScrollViewer

I have a scrollviewer that contains a grid with a bunch of form controls in it (textboxes, checkboxes, comboboxes, etc). When I tab through the controls, the scrollviewer will scroll, but only when ...
-2
votes
1answer
30 views

WPF Control Recommendation [closed]

I'm looking for a horizontal gallery control that will scroll items left/right on mouse hover, like for example if you move the mouse closer to the right edge or left it will scroll accordingly. Quite ...
0
votes
1answer
331 views

ScrollViewer Not Filling Full Screen

I am trying to allow the ScrollViewer to take stretch and fit size of the screen but I'm not managing as it is still keeping the size of the listview. Is there any way that this can be done? ...
0
votes
1answer
172 views

ListBox filled by DataTemplate doesn't scroll WPF

I fill listbox via this code: <ListBox Height="188" HorizontalAlignment="Left" Margin="277,0,0,0" Name="listBoxAtributeValue" VerticalAlignment="Top" Width="191" MaxHeight="188" MaxWidth="191"> ...
0
votes
1answer
301 views

Any idea about WPF ScrollViewer to make it smooth scroolling like Android?

I have trying a simple ScrollViewer in xaml like below: <ScrollViewer Height="{Binding RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type StackPanel}}, Path=Height}" ...
0
votes
1answer
206 views

DataGrid Scrolling causes mixed values

when i got a list binded in a DataGrid (WPF or Silverlight), the values in this DataGrid are mixing when i scroll up and down. On the left original values and on the right the values after ...
0
votes
1answer
598 views

ListBox in Grid Row with Auto height. Scrollbar is not working

I have the following grid: <Grid> <Grid.RowDefinitions> <RowDefinition Height="Auto"/> <RowDefinition Height="Auto"/> <RowDefinition ...
0
votes
0answers
54 views

WPF ListBox scroll inside group

is it possible to scroll only within a groupstyle? Setting a fix height within the groupstyle works but is not a good solution :-/ Has someone a idea? Thanks!
0
votes
1answer
342 views

WPF Datagrid with AlternatingRowBackground scrolls differently when scrolled up and down

I have a WPF(4.0 on Win7) datagrid with AlternatingRowBackground when I scroll up row colors remain on place and data are moving when I scroll down colors are moving with data. Is it usual? Is it ...
0
votes
2answers
763 views

Prevent horizontal scrolling on the view of a Listview

I am creating a Listview dynamically with c# . As a result I don't have the listview in my xaml. Is there a way of setting the horizontal scroll bar visibility = hidden? I am looking for something ...
0
votes
3answers
964 views

Creating a scrollable WPF usercontrol

For an application that I am working on I want to create a custom control that has several buttons on it, If there are too many buttons I need it to scroll. However, I don't want to use the standard ...
0
votes
0answers
198 views

DataGrid Scroll no appearing in auto grid height

I have been having problems with the Grid, Row Height being auto, Grid splitter, and data grid. So in detail: I have in design 3 rows in the following order - Property Grid - Grid Splitter - Data ...
2
votes
1answer
2k views

Smooth scroll within stackpanel in wpf

<ScrollViewer VerticalScrollBarVisibility="Auto" CanContentScroll="True"> <StackPanel Name="basePanel" Orientation="Vertical" Height="450" /> ...
1
vote
2answers
657 views

Is there a simple way to have a ListView automatically scroll to the most recently added item without having to write any code in the code behind?

I have a ListView which is bound to an observable collection. As items are added to the observable collection, the listview does not automatically scroll to show the most recently added item. I am ...
0
votes
1answer
324 views

Scroll Treeview to Bottom automatically in WPF

I got a treeview with a bunch of nodes where more gets added over time. When I add a new node to the treeview, I need to make sure that the very bottom most node is visible. I tried using the ...
2
votes
2answers
565 views

WPF - IScrollInfo implementation

The problem: An Window that has an ItemsControl with some items(let's say Rectangles). The window has MinWidth and MinHeight setted(eg. 300) I need that when I resize window if the rectangles has not ...
2
votes
1answer
3k views

WPF add header to ListBox so it scrolls like DataGrid

I'm trying to create a layout that uses a ListBox and my custom header that looks like a ruler, but for dates (with explicit start and end dates). The goal is to have an appearance and feel similar ...
5
votes
2answers
2k views

WPF Datagrid: Lazy Loading / Inifinite scroll

I fill the Datagrid with 250 rows. When the user scrolls down using the scrollbar (below 75% for example), I want to fetch the next 250 rows from the database, and so on. The idea is that the grid ...
1
vote
1answer
301 views

Change number of lines mouse wheel scrolls in WPF ListBox

In a WPF listbox, rotating mouse wheel will scroll list by the number of lines specified in Windows Control Panel, in Mouse Wheel options. How can I change this, for example I want to scroll WPF ...
4
votes
4answers
804 views

WPF ListBox scrolls to top when I change status message or show wait screen

I'm developing an opensource application named Media Assistant. I used a ListBox to show the library. ItemsSource is bound to a list of LibraryItem. Here is the XALM. <ListBox Name="Tree" ...
2
votes
2answers
2k views

How to make WPF TextBox with a scrollbar automatically scroll to the bottom when lines are added?

For example like Visual Studio's "Output" window does. Is there a way to do it in XAML?
1
vote
1answer
749 views

WPF RichTextBox scroll to TextPointer

The WPF RichtTextBox has a method to scroll: RichTextBox.ScrollToVerticalOffset(double) I want to scroll in such a way, that a cerctain range or at least the start of it comes into view. How can I ...
4
votes
2answers
1k views

C# WPF DataGrid vertical scroll

I see the following behavior with a WPF Datagrid. When there are more items then the height of the view area, the vertical scroll is available. When I click on the last row in the view, an automatic ...
0
votes
1answer
241 views

WPF - getting the REAL width of a control

I want to set the MinWidth of a Grid ColumnDefinitions to the ActualWidth of a DataGrid inside it. The main problem is the DataGrid has a (built-in) vertical scroller since its contents are many. So, ...
1
vote
4answers
815 views

Is it possible to display horizontal scroll bar in DataGrid which have no row(s)?

I would like to allow users to scroll DataGrid horizontally even if there are no row(s) in DataGrid. Just to allow them to find out all the columns that exists in DataGrid. Is it possible to do?

1 2