1
vote
0answers
77 views

Tablet WPF Windows Desktop Application - Scrolling issue

I'm running my desktop application WPF on tablet ASUS ME400 Intel Atom Z2760. All working properly, but when I use scrollviewer, scroll movement with finger (abilitate panning mode horizontalOnly) at ...
0
votes
1answer
115 views

WPF ScrollViewer side

I have a Expander with a nested ScrollViewer as showm below: Code (simplified version) <Expander.Content> <ScrollViewer VerticalScrollBarVisibility="Auto" > <StackPanel ...
0
votes
1answer
87 views

How to display image in its actual size with a ScrollViewer using WPF?

I want to display image in its actual size with a ScrollViewer. I've put the Image Control in a scrollviewer but found that the scrollviewer has no effect. The picture shows is either resized to fit ...
1
vote
2answers
269 views

How to show next n items using WPF ListBox or ScrollView?

I have list box with 10 items. By default vertical scroll is enabled and i can see first 3 items. Customer wants me to add 2 buttons "UP" and "down" and on a button click list box should show next 3 ...
0
votes
0answers
39 views

How do I get scrolling/avoid clipping in wpf?

I want to have two widgets I want scrollable(a DataGrid inside a Grid and the current tab's TextBox inside a TabControl inside a Grid). I try placing them in a ScrollViewer but they never get to max ...
6
votes
2answers
522 views

WPF: Scroll Itemcontrol Content Fixed Header

Is it possible to do something like this with WPF's ItemsControl: Demo I am trying to freeze the GroupedItems rather than the GridView Columns. Resources: <Window.Resources> ...
0
votes
2answers
110 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
105 views

Grid In scrollviewer

i used a GroupBox with a scrollviewer inside it ..and inside scrollviewer i put a grid and begin to put my controls (3 textblocks and 6 textboxes) -after making my scrollviewer to scroll my content ...
0
votes
2answers
89 views

what can i do with that scrollviewer?

i used a GroupBox with a scrollviewer inside it ..and inside scrollviewer i put a grid and begin to put my controls (3 textblocks and 7 textboxes) i can't make scrollviewer to scroll my content ..and ...
0
votes
2answers
141 views

TextBlock Wrap and scrollView

The code below is working nice but the vertical ScrollBar is disabled even if large text inside of TextBlock. How can I enable it? <UserControl.DataContext> ...
0
votes
1answer
76 views

Does anyone know if there's a freely available control like this? [closed]

The application I'm making has a finite amount of space. But there are a lot of buttons needed. So to better take advantage of the space I have available, I want a control that I can add buttons to ...
0
votes
1answer
142 views

WPF scrolling on ScaleTransform issue, multiple UI elements

Also asked at http://social.msdn.microsoft.com/Forums/en-US/wpf/thread/f765d4c9-1719-4757-b467-2492d87bb4ab All, I have a slider that performs a scale-transform in my WPF App. Now I'm running into ...
0
votes
0answers
140 views

Can't edit datagrid row after adding scrollview to DataGridTemplateColumn

<DataGrid Name="TestGrid" HorizontalAlignment="Stretch" VerticalAlignment="Top" ItemsSource="{Binding GridDescriptors}" ...
0
votes
1answer
258 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 ...
1
vote
0answers
124 views

How to freeze the first row and first column on a WPF grid

Is there a way to freeze the first row and first column of a grid (not data grid) in WPF? My application has a grid that contain line chart controls and I would like to have the first row to hold ...
2
votes
2answers
460 views

Scroll/fit image with checkbox

I want to show image and add checkbox "Fit to screen" - fit image to visible area. To fit image to visible area I use the following xaml fragment: <Image Source="{Binding Picture}" ...
0
votes
0answers
40 views

keep camera at the bottom of window

I have this window with a log tailing application which you can see here at the bottom. It basically scans the other file for changes and appends text from that file to the textbox in real-time. The ...
0
votes
2answers
139 views

ScrollViewer Actual Height Returning Incorrect Value?

No matter what I do I cant make the line extent to the bottom of the scrollview :( <Grid> <DockPanel HorizontalAlignment="Stretch" Name="dock" ...
0
votes
1answer
176 views

How do I bind to the preferred size of a ListView?

I have a WPF ListView that should be extended with an always visible footer. The footer shall behave like a header and should not be scrolled away. The following XAML uses an external ScrollViewer ...
2
votes
1answer
2k views

Trying to programmatically scroll a scrollviewer

I'm developing a WPF app in which I have a ScrollViewer with grid (16 ColumnDefinitions all auto width) with an image assigned to each column. The effect I want to create is when the mouse enters a ...
0
votes
1answer
246 views

ScrollViewer Control in Wpf

<ScrollViewer VerticalScrollBarVisibility="Auto" > <TextBlock Text="{Binding Status}" HorizontalAlignment="Center" /> </ScrollViewer> The Status always I'm adding to ...
0
votes
1answer
102 views

How can i add items to DataGrid when users scroll to the bottom?

<DataGrid AutoGenerateColumns="False" Name="dgMain" Grid.Column="0" Grid.Row="1" ItemsSource="{Binding ...
0
votes
2answers
84 views

How to get a footer just above a Scrollviewer?

I got a Scrollviewer with an ItemsControl inside. The ItemsControl, depending on the number of items in it, can be scrolled or not with the SCrollViewer. I have a Control that display some total ...
5
votes
1answer
127 views

Is it possible to animate the BringIntoView method in WPF?

Is it possible to animate the BringIntoView method in WPF? We want a nice animated transition of our ScrollView rather than having it just jump to the contained control. How do we do this?
3
votes
1answer
524 views

Virtualizing Panel that doesn't crop items

So, it looks really silly to have a chrome-less collection if the items are getting cut/cropped at the end of the scroll region. I want to create a virtualizing panel for collections ...
1
vote
1answer
1k views

ScrollViewer not enabled for ListView

I have a ListView control inside UserControl. But when content overflows size of the ListView, vertical ScrollBar is not enabled, despite of setting it in XAML. XAML appears as follows: ...
0
votes
3answers
191 views

Binding a list to a flow of WrapPanels

I am trying to do an interface in WPF where a list of item is displayed, taking as little vertical space as possible: My instinct was to use an ItemsControl to bind my list, and to put the UI for ...
0
votes
1answer
86 views

Search for words like in chrome

this is how Chrome finds you a word when you search for it: 1) select it in all the places it appears. 2) draw little line in the scroll bar wherever it found the searched word. I have a canvas ...
0
votes
0answers
115 views

objects float in scrollview

I'm developing in WPF a diagram that should looks like the one the VS2010 gives you. in VS2010 at the top there are modules and when you scroll the page down, they float near the top of the canvas ...
1
vote
1answer
742 views

BringIntoView Method

In WPF, I have a scrollviewer with 7 different groupboxes in it. Each groupbox is it's own individual section for different forms. Because the scrollviewer is so long, I've placed a series of ...
0
votes
3answers
457 views

Scrollview visible but not scrollable on a Page

After searching for posts regarding ScrollView not showing I couldn't find one example that is similar with mine. Refer to the code below, my ScrollView is visible but it is not scrollable. I wonder ...
0
votes
3answers
635 views

Elements of a DockPanel that share the same scrollbar?

Here is the code I have : <ScrollViewer Grid.Row="2" CanContentScroll="True"> <DockPanel> <TreeView x:Name="tView" DockPanel.Dock="Top" VerticalAlignment="Stretch"> ...
2
votes
2answers
561 views

Issue with ScrollViewer in WPF

I am working on a WPF application and using a scrollViewer to view the content that is offlimit the screen area. Working fine, no issues. But if my window contains a Listbox or Grid or anything like ...
0
votes
1answer
2k views

StackPanel inside of a ScrollView doesnt physically scroll correctly

Consider the following XAML (a UserControl): <Grid x:Name="LayoutRoot" ScrollViewer.VerticalScrollBarVisibility="Disabled"> <Grid HorizontalAlignment="Right" Width="335.312" ...
1
vote
2answers
520 views

Mouse Wheel in Nested Listboxes

I am currently working on a WPF project in C# using MVVM. In this project I have a list box that loads a user control for each row of data in my items source. The user control that gets added for ...
1
vote
1answer
512 views

C# WPF horizontal scrollbar for ScrollViewer RepeatButtons only on either side of contents

Is there a way to get a scroll viewer with the RepeatButtons only and to force the buttons to the edge of the contents? I want it to look like this: ...
0
votes
2answers
216 views

How to manipulate an implicit scrollbar in WPF?

How can I access the ScrollViewer which is created automatically by this ListBox? I need to ScrollToBottom; <ListBox Name="messageListBox" Height="300" > <ListBox.ItemTemplate ...
0
votes
1answer
217 views

WPF Scrollviewer won't scroll up

I have the following (simplified) xaml: <Grid> <Grid.ColumnDefinitions> <ColumnDefinition Width="143*" /> <ColumnDefinition Width="135*" /> ...
1
vote
1answer
162 views

How to show a partial view of a Item in itemscontrol when scrolling?

The ItemContainer templates in my Listboxes and views can be somewhat big and showing alot of info. But when I scroll and the big item should start disappearing to the top or bottom it disappears ...
1
vote
4answers
5k views

Get reference to my WPF ListBox's ScrollViewer in C#?

I think this should be easy but I'm having a tough time with it. How can I get a reference to my ListBox's scrollviewer in C#? I've tried pretty much everything I can think of. The ListBox is in a ...
1
vote
2answers
2k views

WPF Programatically scrolling a canvas in a items control

I have an ItemsControl that contains a canvas within a ScrollViewer. The canvas is large and only a portion of it displays at a time. I want to programatically scroll it (the user clicks and drags the ...
1
vote
1answer
795 views

scrollviewer and canvas - scrolling view to given position

Hi I have some problems with implementing autoscrolling in WPF (I think I could call it that way). I have a canvas placed inside a scrollviwer. On my canvas I can dynamicly add different shapes. The ...
4
votes
1answer
709 views

The “visible area” of a control?

I have a Canvas within a ScrollViewer. The Canvas have a size of 600x600 and the ScrollViewer 400x400. If i scroll to the right side, i can't see 200pxl left side of the Canvas. Therefore my area of ...
1
vote
2answers
939 views

How to reuse WPF ScrollViewer to create my own scrollable control?

I'm trying to improve the graph drawing control that comes with Graph#. It's good, but things get out of hand when you start dragging nodes around. This is my first encounter with WPF, so this is ...
1
vote
2answers
3k views

Scrolling Content Inside A Border With CornerRadius

I'm looking for help with a WPF problem I've been wrestling with for a while. I've styled a tab view, moving the tabs onto the left and displaying them vertically. These tabs sit inside a border with ...