2
votes
2answers
119 views

WPF Image Pan, Zoom and Scroll with layers on a canvas

I'm hoping someone can help me out here. I'm building a WPF imaging application that takes live images from a camera allowing users to view the image, and subsequently highlight regions of interest ...
1
vote
2answers
541 views

Windows Phone 7 - ScrollViewer value changed

I am searching all the time for solution and cant get correct one. I have grid that have width 960 and have ScrollViewer in it. Now i would like to know value (horizontal offset) of my scroll while ...
0
votes
0answers
204 views

ScrollViewer not to scroll when content does not exceed parent's height

In this XAML I can scroll Contents grid up and down a bit even though it does not exceed the ScrollViewer height. <Grid> <Grid.RowDefinitions> <RowDefinition Height="80" ...
1
vote
1answer
389 views

Scrollviewer doesn't scroll with touch

So I have come to that point where I am saying to myself over and over again I am missing some basic stuff. I have a ScrollViewer with a RichTextBlock that converts HTML to the content. Everything ...
0
votes
2answers
112 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
66 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
0answers
95 views

scrolling two scrollviewers together windows phone

Trying to implement something with two different grids (headers, data) I used two scrollviewers to scroll each one horizontally and just one vertically. <ScrollViewer ...
0
votes
1answer
338 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
299 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 ...
0
votes
1answer
999 views

Windows Phone: how to disable touch scrolling in ScrollViewer (Listbox)?

i have a scrollviewer with a listbox inside: i need to disable the vertical scroll by touch, how can i? In other words, the user can't scroll with the touch (i have put buttons, but this is another ...
0
votes
1answer
305 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}" ...
7
votes
2answers
1k views

How can I make WPF ScrollViewer middle-click-scroll?

Clicking the middle mouse button (aka: mouse wheel) and then moving the mouse down slightly lets users scroll in IE, and most Windows apps. This behavior appears to be missing in WPF controls by ...
2
votes
4answers
4k views

Get scroll event for ScrollViewer on Windows Phone

Question: Get scroll event for ScrollViewer on Windows Phone I have a scrollviewer like so: <Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0"> <ScrollViewer ...
4
votes
2answers
2k views

Scroll AND Stretch the content of an Expander

This is what I want: 1.) When I click my Expander button and it expands it should stretch down to the end of the Grid see sample image => 2.) When I write more Text than space is available in the ...
6
votes
2answers
1k views

WPF detect scrolling parent Control

Imagine the situation you open a WPF Popup(e.g. through ButtonClick). You have a ListBox directly in the Popup with some items, so you have to be able to scroll. Imagine that this is your Custom ...