Tagged Questions
1
vote
0answers
79 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
99 views
Windows 8 C# Save ScrollerViewer state on Frame.Navigate
I need to save the position of my ScrollViewer so that when I navigate to a page and hit the back arrow, it will still be at the position it was.
I'm using:
protected override void LoadState(Object ...
1
vote
1answer
317 views
Scrollviewer for Windows 8 does not pan correctly after a zoom
I am having trouble with a zoom in button on my scrollviewer.
Inside of the viewer is a grid. And inside of that grid is a bunch of images laid out in a specific ordering. Ideally I would like to go ...
1
vote
1answer
331 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 ...
1
vote
1answer
904 views
Scrollviewer in Metro app - scroll by touch and handle other gesture
I have page with Grid and Scrollviewer:
<Grid x:name="mainGrid">
...
<ScrollViewer Name="mainScroller" ScrollViewer.HorizontalScrollBarVisibility="Visible" ...
2
votes
1answer
431 views
Zooming into image in Windows Store apps
I have a ScrollViewer with an Image Control in it. It displays a rather large image. I want my user to be able to zoom into the image using gestures. I therefore enabled the ZoomMode on the ...
0
votes
0answers
353 views
How can I get the PinchZoom ended event in Windows 8?
I'm using XAML with C#.
I have an Image in a ScrollViewer that is Zoomable.
If the user pinchzooms the image, I want to get a larger resolution image once the optical zooming is done and replace it ...
0
votes
1answer
778 views
Disable zooming in and out of scrollviewer in Windows 8 metro app
I am using RichTextBlock to show some text, and the RichTextBlock is in a scrollviewer, the code is shown as below:
<ScrollViewer Grid.Column="0">
<Grid>
...
0
votes
1answer
2k views
Windows 8 Metro ListView - can't disable ScrollViewer (C#/XAML)
I have a ScrollViewer that contains a Horizontal StackPanel that contains 2 ListViews.
My goal is to get the 2 ListViews to scroll together. The problem I'm having is that I can't get the built-in ...
1
vote
1answer
2k views
Problems with scrolling ListView on Windows 8
I make some sort of chat application for Windows 8 using C# and XAML.
For chat list I am using ListView binded with ObservableCollection. For message items I am using custom controls, contains ...
4
votes
4answers
3k views
ScrollViewer GridView XAML
I am currently building a Windows 8 XAML C# application. In a page I have a scrollviewer for horizontal swiping and scrolling. I have several controls in it which work really well with the ...
3
votes
3answers
888 views
How can I detect reaching the end of a ScrollViewer item (Windows 8)?
I need to do some work when the user scrolls to the end of a ScrollViewer in a Windows 8 'Metro UI' app that uses .xaml with C# behind-code. Alternatively, the ScrollViewer has snap-points enabled, so ...
1
vote
1answer
207 views
Changing the title text dynamically in Windows 8
In the app preview for the Bing Weather app in the Windows 8 release preview, the title text changes automatically when the "view" changes (i.e. when scrolling).
My app currently has two ListBox ...
0
votes
1answer
531 views
Fixed background in a scrollviewer Windows Metro (not parallaxing)
I am trying to add a texture as a background to a scrollviewer. I want the background to move with the content, but I want it fiexd. Not using the parallax effect...
So far what I've got is:
...
7
votes
3answers
4k views
How can I make a Windows 8 Metro scrollviewer respond to mousewheel?
I'm currently writing an app for Windows 8 using Metro and C#. In my app I use a combination of scrollviewer and gridview to show my data. My problem is however, how can I make it scrollable with a ...