0
votes
0answers
17 views

How can I use Flick Gesture in WinRT ScrollViewer?

I was able to use Flick gestures in WP projects but I hadn't been found it yet. Could you help me please? Thanks.
0
votes
2answers
47 views

How to implement a lazy load GridView on WinRT?

I need to implement a gridview of thumbs. But when my app hit 200 thumbs, it starts to get memory problems(of course). I need to implement a lazy load but I don't know how to detect where the ...
1
vote
1answer
105 views

WinRT Controls Over Scrollviewer Consuming Scrolling

My issue is that I have a few controls (buttons, combo-boxes, hit test visible controls, etc) that are on top of a scrollviewer. Now there is no reason for these controls to consume a pointer wheel ...
0
votes
0answers
125 views

Scrollable inner and outer grid in WinRT (Excel sheet view)

I am trying to create a list of employees and their roles along with a timeline view (weeks of the year) of the projects they are working on. I am taking an existing excel sheet that contains this ...
0
votes
1answer
253 views

ScrollViewer not working with StackPanel

Left side of my page I have a vertical StackPanel with the following elements: 1 TextBlock 1 vertical StackPanel with multiple elements that fills the available space I am trying to make the ...
0
votes
1answer
307 views

Zoom Out Image to fit ScrollViewer Dimensions

I have a little issue with zooming accordingly an image. I have an Image in my XAML, with a ScrollViewer attached so it can be zoomed. Like this : <ScrollViewer x:Name="ImageScrollViewer"> ...
0
votes
2answers
934 views

Winrt & Xaml: Grid with Scrollbar … tried Stackpanel, Scrollviewer, can't see to get it to work

I am trying to get a scrollbar on on a grid for WinRT app with Xaml. Basic page setup has an overal grid for the top and middle sections. Inside the middle section I put another grid with 2 rows and ...
0
votes
1answer
552 views

WinRT ScrollViewer inheritance

I have an issue with the Windows.UI.Xaml.Controls.ScrollViewer. It does not work as I'd like it to (doh). If I put a Canvas inside and want to draw on it I can't as all the events from Canvas are ...
0
votes
0answers
194 views

ScrollViewer MouseWheel not working w/Trackpad, does with USB Mouse & in Simulator

So I've been fighting Mouse Wheel scrolling in a ScrollViewer all day... Turns out my trackpad on my laptop wasn't simulating Mouse Wheel events. Doesn't make any sense, considering it works on other ...
1
vote
1answer
392 views

Winrt scrollviewer different behavior in simulator as mouse or finger

I have a grid with some controls and Background. Inside the grid is also a canvas over the complete grid. On pointer_pressed I paint on the canvas. Works very well in simulator with mouse and finger. ...
1
vote
1answer
166 views

Holding an item steady against scrolling in scroll viewer in windows store app

I want to hold a section label stable at the top of a ScrollViewer in a windows store app, while that section has not scrolled off. For example, the windows weather app does this with the section ...
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 ...
3
votes
1answer
1k views

Sticky header in ListView and GridView WinRT xaml

How could one accomplish behavior in which a header of a ListView or GridView group doesn't scroll with the content, but stays fixed until the content comes to an end and the following header then ...