-1
votes
1answer
13 views

Using Gridview for metro apps

I am working on Windows Store application using C#, Right now I working on FileOpenPicker FileOpenPicker fileOpenPicker = new FileOpenPicker(); fileOpenPicker.ViewMode = PickerViewMode.List; ...
0
votes
3answers
110 views

How to get gridview with variable sized gridview items?

I want to show images in grouped gridview. Now all the images will have various height & width So I want to show images in it's original height width. I tried WrapGrid, VariableSizedWrapGrid & ...
0
votes
1answer
63 views

Windows Store App update GridView

How to update the contents of GridView. ie initially I bind data to GridView & once I have updated the database I have to clear the existing items and bind updated items.
1
vote
0answers
35 views

Replace element in GridView on element's event

I'm using a highly dynamic GridView inside my Windows Store App. Element's inside the GridView can have different template and size, depending on what I'm inserting inside DataSource. For instance: ...
0
votes
0answers
22 views

Trigger Gridview to relayout the items

I have <GroupStyle.Panel> <ItemsPanelTemplate> <VariableSizedWrapGrid ItemHeight="5" ItemWidth="5" Orientation="Vertical" ...
0
votes
1answer
42 views

Add Control after Items in GridView Group

I'm currently developing a Windows 8 Store app that uses a Grouped GridView in the HubPage showing Highlights for some Categories. So far, when clicking the Header you see More Highlights for this ...
0
votes
1answer
127 views

XAML/C#: What event fires after reordering a gridview?

I am making my first Windows Store app in Visual Studios 2012. I have a gridview control that I have enabled to be reordered. I have code that I need to run when the list is reordered. I have tried ...
0
votes
2answers
188 views

Grid View Items contents in xaml (windows store app)

how can I get to the contents of the clicked grid Item in a grid view ... for example the grid item has a textbox ... how could I get the contents of this textbox when the gridview Item is clicked vie ...
0
votes
1answer
55 views

GridView Item's “ItemClick event” is not compiled - due to the applied styles?

Here is the current Style used (mostly from a template) <Style x:Key="panoramaGridViewItemStyle1" TargetType="GridViewItem"> <Setter Property="FontFamily" Value="{StaticResource ...
0
votes
1answer
241 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
0answers
140 views

Windows 8 Store App: Showing Ads between Groups in Grouped GridView

I am developing a win 8 store app and I have the main GridView list page, which is a grouped collection of items. It shows several groups in grids as you'd expect in the standard GroupedItems ...
0
votes
1answer
241 views

Remove item click event handler for single items in GridView

In my Windows Store app I use a GridView with an ItemClick event handler: <GridView Grid.Column="0" Grid.Row="1" SelectionMode="None" IsItemClickEnabled="True" ItemClick="ClickOnItem"> ...
0
votes
2answers
420 views

windows store app gridview customizations?

I have a Windows Store App GridView which is bound to a collection through ItemsSource property. The collection has 5 items.By default, the items are displayed vertically like this Item1 item3 item5 ...
1
vote
1answer
982 views

JavaScript runtime error: Unable to get property 'removeChild' of undefined or null reference

I'm using the grid app template for a windows 8 application and i added a new view after the last one from the default temlate. here is my code for pushing the new view: function ShowOnMap() { ...
0
votes
2answers
848 views

Bind group data to Gridview windows 8 store app

This is my first win 8 store app using XAML, so kind of not sure about few things. I want to bind data to a gridview. To do this, I have a class Category { public int Id { get; set; } public ...
0
votes
0answers
99 views

XAML GridView - variable header width

In the VS2012 basic grid app, grouped items page: how can you make each group's GridView header have the same width as the VariableSizeWrapGrid holding group's items? For example, if the first group ...
0
votes
0answers
632 views

Static Gridview Items and Groups for Windows 8 Store Apps

I have a static GridView that layout my app. <GridView Grid.Row="2" Grid.Column="0" Grid.ColumnSpan="2" Margin="0 20 0 20" Style="{StaticResource ZenGridViewStyle}" ...
2
votes
1answer
196 views

How to manipulate individual group headers of gridview

The following scenario: I use a gridview to present grouped data. I added a TextBlock to the headertemplate which should contain the number of items in this group. (For example) ( Edit: In my ...
0
votes
0answers
174 views

Memory leak due to GridView in Windows Store apps

I have the following GridView <GridView x:Name="itemGridView" AutomationProperties.AutomationId="ItemsGridView" AutomationProperties.Name="Items" ...
1
vote
0answers
189 views

Windows 8 GridView Drag/touch issue

the touch experience inside the Gridview while dragging in my windows8 App is not correct as when I try to dragitem from Gridview in both right/left directions it's considered as panning & ...
0
votes
1answer
108 views

How to manipulate items in C#

I'm making a Windows Store App using C# and XAML. How can I manipulate one single item in a GridView or a ListView? According to certain logical conditions, I need to load or not the item in these ...
1
vote
1answer
155 views

How do i represent a tournament tree structure in a gridview for a windows store app (tree view is not available) using XAML

I am currently implementing a tournament bracket drawer in a windows store app using xaml/c#. I had intended on using treeview and came up with some psuedo code for the tree view tournament and its ...
1
vote
0answers
360 views

Set SelectedItem in GridView in Windows Store Application

I have a model object which a list of it binds to a Gridview. this is my model class public class ItemModel: BindableBase { public override bool Equals(object obj) { return this.Id ...
0
votes
1answer
219 views

Windows Store Apps- GridView Item width

I am trying to create a GridView with different width for each of its Items. I've declared all the items in my XAML ( i.e.they are predefined) and have given them different width sizes. But when the ...
0
votes
1answer
243 views

Windows Store, Accessing Canvas from code stored in DataTemplate of GridView item

How can I access a Canvas control, stored in DataTemplate of GridView items from my C# code? <DataTemplate x:Key="250x250ItemTemplate"> <Grid HorizontalAlignment="Left" Width="250" ...
0
votes
1answer
318 views

Do I have to code both ItemClick and Tapped events?

I notice that there is both an ItemClick and a Tapped (and RightTapped) event for the GridView control. Will the ItemClick event only work in response to a Mouse-click, and the Tapped event only work ...
0
votes
1answer
388 views

Windows Store App GridView get total width

I'm building a Windows Store App that uses a GridView to show a list of items (basic, out of the box template). I would like to know if I can get the total width that all the items take up. Right ...