0
votes
0answers
44 views

CollectionViewSource - headers without content

I would like to have GridView with CollectionViewSource but I need only headers without content sometimes, so I have a method: internal List<GroupInfoList<object>> GetGroupsByLetter() ...
-1
votes
0answers
29 views

How I can limit the number of the items or visualize DefaultViewModel inside GridView in C# for Windows 8 Store Grid app?

GroupedItemsPage.xaml.cs var sampleDataGroups = SampleDataSource.GetGroups... var group = SampleDataSource.GetGroup... this.DefaultViewmModel["Groups"] = sampleDataGroups.Take(1); ...
0
votes
1answer
132 views

GridView and VariableSizedWrapGrid templating windows store app

I'm writing a windows store app, the main page is a GridView of grouped items. I already managed to get the templates of the different tiles of the GridView, but the problem is as follows: I ...
0
votes
1answer
59 views

Wrtiing WinRT GridView Drag and Drop Handler

In WinRT, I am trying to implement a custom drag and drop handler for my variable sized GridView. In the DragItemsStarting handler, I can get the item being dragged by using e.Items.FirstOrDefault(). ...
0
votes
1answer
50 views

Can I make a custom gridviewitem independent of my collectionviewsource?

I have a CollectionViewSource that I use to populate my gridviewitems (black squares) and I was wondering if it would be possible to add a gridviewitem (red square) independent of my ...
0
votes
1answer
265 views

How to do xaml template like Bing app for windows 8?

The standard GridApp template is as follows: Variable Sized Grouped GridView template is as follows: How to make a template for your application, so that it looks like this: For example, this ...
0
votes
1answer
252 views

Disable mouse right click event for GridView on WinRT C# app

i have a GridView in my WinRT app, the problem is that one of the standard functionality of the gridViwes is when you click the right button (MOUSE), the item clicked is selected, this will focus on ...
0
votes
2answers
99 views

Winrt IValueConverter on a GridView item

I have a ObservableCollection<TimeSpan> Laps which I am databinding to a gridview. This works as expected but I need to apply a converter to set the format of the TimeSpan: In my resources: ...
0
votes
1answer
81 views

Storing Data from GridView in WinRT

I have created a GridView layout that starts out empty. Users then enter data that and a GridViewItem is created for each entry. The data is bound to a collection in the code-behind. What is the best ...
0
votes
1answer
101 views

Implementing Inc loading in Grid View?

I have implemented incremental loading capturing the scrollviewer inside the gridview and then binding its ViewChanged event as written in the below code. What logic should i implement that when ...
0
votes
1answer
87 views

How to make the GridView adapt to different resolutions in Windows Store apps?

I know when the resolution is changed, GridView grows. But I don't want that. I have GridView and it has fixed GridViewItem that's 9. So when the resolution is change the GridViewItem should be ...
0
votes
1answer
365 views

Big spaces between items in GridView (WinRT)

What i want in the end a table of items with same appearance (nice controls), but different text on it smth like this, but much more: _ 3 6 1 4 7 2 5 8 _ _ 9 where "_" is nothing. What i ...
1
vote
2answers
72 views

Set a maximum number of selected items

This might be a silly question, but... How could I implement a maximum number of selected items within a listview/gridview? I'm having a listview with 9 items, from which I'd like the user to be able ...
0
votes
1answer
62 views

Gridview Item transitions

Is there any way I could assign a transition to a Gridview's items instead of the entire gridview, somehow like here? I can't seem to manage this... Thank you.
2
votes
1answer
169 views

How to make the GridView adapt to different resolutions in Windows Store apps

In Windows Store apps, if the content is fixed, we can encapsulate it into a ViewBox, so that the content can adapt to different resolutions. But, if the content isn't fixed, in my app, there's a ...
0
votes
1answer
269 views

Adding textblocks of variying height to gridview c# winrt

I am trying to add several textblocks that contain text of varying lengths to a gridview. I want to adjust the height and width properties so that the text in the textblocks can be visible. The ...
0
votes
2answers
125 views

ItemsGroups in my GridView don't wrap and are located out of the screen

I just implemented a GridView with groups feature. I have a list of TVshows's episodes which are grouped by diffusion date. When I have more than 3 episodes by date, I want to have my items wrapped ...
0
votes
0answers
628 views

WinRT XAML Add a second Header to GridView

i'm new to XAML and i'm trying to do a Windows 8 app in XAML/C#. I'm working on a "GroupDetailPage" sample who has a gridview with an header on the left (Picture and descrition) and items on the ...
0
votes
1answer
245 views

Synchronizing two ListViews in WinRT

I'm trying to synchronize the selected items of two different ListViews in a WinRT application, so that selecting an item(s) in one selects the same in the other. Both lists are bound to the same ...
0
votes
1answer
261 views

Windows RT: Snapped mode Change GridView to ListView

When my app is snapped displaying a GridView isn't the best way to present the information. I want to present it in a ListView instead. I also want to change the item template as well. I currently ...
0
votes
2answers
171 views

Gridview Header Placement

With a grouped datasource, the HeaderTemplate is located under the GroupStyle.ContainerStyle, with the container consisting of two rows, one for the header and the other for the items. This doesn't ...
0
votes
2answers
282 views

GridView width based on ItemsSource

I am currently using a GridView to display a list of images that the user can swipe through. When they get close to the end of the list, new images load through the use of a ObservableCollection that ...
1
vote
0answers
248 views

Deleting multiple items from Gridview WinRT issue

I'm working on a WinRT app where on a page, I have a GridView displaying multiple items (some notes, similar to the gridview by creating an ItemsPage template) with a source set through binding to a ...
4
votes
2answers
197 views

GridView overlapping effect

I have a GridView with grouped data. All is like in Grouped Items Page template in VS2012 except I set more data then they do there (around 15 groups, around 200 items total). All is fine except ...
1
vote
1answer
284 views

WinRT GridView scrolling setup work differently on mouse/kb and touch

I'm trying to mimic the functionality of the NetFlix app, with a strip on the left that collapses on scrolling, I had to offset the tiles on the GridView a bit to the right so that they can accomodate ...
0
votes
2answers
410 views

WinRT Gridview DragItemsStarting event: How to find control being dragged?

I am working on a XAML/C# WinRT app. The app has a Gridview with a grouped source. I'm implementing manual drag/drop functionality on the Gridview (because MS, in their great wisdom, decided to skip ...
0
votes
0answers
142 views

Grouped gridview with reordering

I know that MS says this scenario (grouped gridview with reordering) is not supported, which is a real shame. It seems the start screen actually implements such behavior, but either way, is there any ...
0
votes
1answer
225 views

How to get the actual size of a ItemContainer in WinRT GridView

It seems that there are spacing between each item container, also margin and padding in the container. My question is how to calculate the actual size of a ItemContainer in GridView so that I can ...
3
votes
1answer
513 views

How do I dynamically size a GridView Item?

I have a Grid View that is used to display "tags" which is a list of strings that are dynamic in size. Using the following code: <GridView ItemsSource="{Binding Tags}" ...
2
votes
2answers
970 views

WinRT gridview Add tile

I have a GridView and it's bind to List of items. I want it to have a static item so that users can click on it to add more items. if I click on other items I produce a item detail page. How can I ...
5
votes
2answers
2k views

GridView Orientation with Wrapping in WinRT

I am developing a WinRT app in c# , I am using a GridView to present my item. I want my items to be arranged Horizontally and then(when reached the max width) next items should be added to the new ...
0
votes
2answers
540 views

WinRT - how to do manipulation on GridView?

I want to have slide feature on GridView, so I use manipulation but it doesn't work, here is XAML code: <GridView x:Name="DaysGridView" HorizontalAlignment="Right" IsItemClickEnabled="True" ...
0
votes
1answer
145 views

show progress and refresh gridview after operation

I have an operation that scans folders in selected directory, gets all the files, parse them and add to SQLite db. As you can guess it takes a while when directory has many files. First user clicks ...
0
votes
1answer
411 views

Nested scrollviewer within a gridviewitem

I have a scenario within WinRT where I have a standard gridview that displays content in a horizontal manner - the usual WinRT scrollviewer kicks in here for content that appears off the right hand ...
0
votes
1answer
359 views

Resize Grid Items WinRt

Can you resize grid items dynamically? I have a gridview that has a textbox in it. They textbox has a number of bound values that can cause it to grow in size but it does not do so after the app is ...
1
vote
4answers
3k views

How to pre-select multiple listview/gridview items in C#/XAML windows 8 app?

in my app there is gridview of my custom class. I am using custom data template and values are bound from SQLite. Now when user launch the app, the certain items (NOT SINGLE) should be pre-selected in ...
2
votes
2answers
2k views

windows 8 metro app collectionviewsource databinding issue

I have a collectionviewsource <CollectionViewSource x:Name="groupedItemsViewSource" ItemsPath="Items" /> and give it as the itemssource to a gridview ...
2
votes
2answers
332 views

Is is possible to have grouped GridView without using CollectionViewSource?

It is just seems to be a little awkward design to tie a feature to a class instead of interface. Has anybody managed to group GridView without CollectionViewSource? Also a bonus question here: why ...
0
votes
2answers
254 views

How to sort files with last modified first in c#/xaml metro app?

I am developing an app, which will show last 9 files which has been modified in gridview. Gridview item shows file name and last modified date. The latest modified file should be first and then other ...
6
votes
3answers
7k views

Create a table (DataGrid) in Windows 8 metro apps (C#/XAML)

I'm trying to create a table like this: How can I do something like that using ListView or GridView? I couldnt find the right way to add the headers of the table..
1
vote
1answer
217 views

GridView Control with different child categories that have no relationship to each other

I may be missing something here so I apologise if this question may come across as obvious. In a XAML WinRT app, I can have a GridView control that I can throw a collection of stuff at, and then using ...
0
votes
1answer
302 views

GridView menu in WinRT

I'm trying to create a horizontal scrolling menu in WinRT and I would like to know, how can I achieve a smilar effect as for example Minesweeper game menu (found in Windows Store). I know it could be ...
0
votes
1answer
529 views
4
votes
1answer
2k views

Change GridView header placement

I have a normal GridView, that displays grouped data. My goal is to move the header (a button) from the top of the group to the left of the group. <GridView> <GridView.ItemsPanel> ...
3
votes
1answer
1k views

WinRT GridView disable selection for item, but keep it enabled

This is similar to disabling selection of a single item, however, I want to keep the item enabled (for tap, aka click event). Thus simple setting IsEnabled to false is not an option obviously. What ...
1
vote
0answers
477 views

WinRT GridView with items of different size

I'm trying to use GridView with DataTemplateSelector. So some of the items are huge and some of them are small. I have two problems: Big items are not fully visible. Bottom part of element is ...
2
votes
1answer
689 views

Placing different items in a horizontal list in a Win8-Metro-App

I want to develop my app with the following style/design: Some comments on the implementation: The content is loaded dynamically (the three categories (Subtitle 1-3) are fixed. The number of ...
2
votes
1answer
897 views

GridView scroll in Metro application doesn't work

I trying to build a winRT metro application that use a GridView. I get the GridView and it looks like I want it to do. But the horizontal scroll doesn't work. When I drag the content it move but when ...
2
votes
1answer
808 views

How does one go about removing the GridView mouseover highlighting and click/touch effect in the Windows 8 Metro environment?

I have four separate information sections I'd like to display in my app. I have setup a GridView to provide a nice horizontal scrollable list, so the user can swipe side to side to view different ...
1
vote
1answer
658 views

Why are BitmapImages failing to load and display properly in my GridView?

I have a GridView with elements containing a TextBlock and an Image. The TextBlock always populates fine, but the Image, once in a while, does not get loaded for one or two items. If I refresh the ...

1 2