1
vote
1answer
40 views

How to disable right-button selection on List View Item (ListViewItem)?

I want to prevent the ability to deselect a list view item if it is already selected. Therefore how do I prevent right mouse click ability to deselect an item? I have prevented the ability to ...
0
votes
0answers
24 views

Nested class in XAML

In XAML for WPF you can reference a nested class with the plus sign OuterClass+InnerClass This syntax doesn't seem to work in XAML for WinRT. Is there another syntax that works?
0
votes
0answers
38 views

WinRT MediaElement Source

I am attempting to have multiple MediaElements on a page and have each element rotate videos every 10-20 seconds. The MediaElements are all started at the same time, so they play fine until I try to ...
0
votes
1answer
17 views

Swipe-select on a GriedView Item in MVVM

I have a GridView where I want to be able to swipe-select the items or click on them. As I wanted to work with MVVM the Click was handled by a Command on a Button which is the root of any item in the ...
0
votes
1answer
26 views

slider control and textblock control interaction-Metro apps

i am trying to set the slider control to value from text block's text property through {Binding} on XAML. <Slider ValueChanged="slider_ValueChanged_1" Value= "{Binding ...
0
votes
1answer
28 views

Slider control shows abnormal behaviour on {Binding} with TextBlock

Sorry if title is weird , because the problem itself is kinda weird. I have a TextBlock and Slider Control on Clientside. The Slider is {Binding} to Textblock. This is the code for them - ...
1
vote
1answer
54 views

How to update the databound elements in the UI in a cached page?

In my app (GroupItemsPage) I have several groups with items (showing some news). If a user scrolls to the right and chooses an item, he is redirected to a details page. If he returns, the same group ...
0
votes
1answer
37 views

Bind property to method

I am developing a Windows 8 App in C# and using databinding <CollectionViewSource x:Name="departments" Source="{Binding Departments}" d:Source="{Binding AllGroups, ...
1
vote
1answer
21 views

How to Databind Xaml Path elements

I have an ItemsControl bound to a collection of objects, each of which contain a property of the type Windows.UI.Xaml.Shape.Path I have the following Xaml as an ItemTemplate: ...
0
votes
0answers
42 views

Change visibility of GridView Items using binding

How can I change GridViewItems visibility using property binding? I can't create another ObservableCollection to filter the one I am using as ItemsSource. I tried to use GridView.ItemContainerStyle ...
0
votes
2answers
48 views

GridView width inherited from parent

I have a StackPanel with a fixed width. Inside that StackPanel I have a GridView, which Width should be limited to its parent width (smth like Width="*"). My sample XAML: <StackPanel ...
0
votes
1answer
35 views

Winrt StreamWriter & StorageFile does not completely Overwrite File

Quick search here yielded nothing. So, I have started using some rather roundabout ways to use StreamWriter in my WinRT Application. Reading works well, writing works differently. What' I'm seeing ...
3
votes
1answer
35 views

XAML clr-namespace - using incompatibility?

When sharing code between WinRT and WP8: WP8 wants: xmlns:vm="clr-namespace:MyApp.ViewModels" WinRT wants: xmlns:vm="using:MyApp.ViewModels" This means you can't share XAML code - like user ...
1
vote
1answer
50 views

ContentControl with DataTemplateSelector and binded Content

I have the following ContentControl two-way binded with a Current property that shows the current selection of my ListView. <ContentControl Content="{Binding Current}" ...
0
votes
0answers
56 views

String resource from .resw for Data Binding in Windows 8

String resource from .resw for Data Binding in Windows 8. In Windows Phone I use follow: Create AppStrings.resx and put all strings on it. Create class StringResources, with field which returned ...
1
vote
4answers
73 views

Binding dictionary to combobox

I am trying to bind a dictionary to combobox but on UI there is no Item displayed only blank items are Binded. Please find the code below and let me know what I am doing wrong? Code: private ...
0
votes
1answer
69 views

Flow of initializing objects in XAML?

I'm not sure but from my hours of debugging, this should be the best description of my problem I can give. I'm creating a WinRT app, there are two pages- Main Page and Details Page. Inside Main Page ...
0
votes
1answer
120 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
2answers
41 views

Bind several ToggleButton IsEnabled property to other ToggleButtons

I have a page which contains 16 ToggleButtons, 12 of which are by default disabled and will only enable once any of the remaining 4 ToggleButtons is clicked. Is there any way to wire the IsEnabled ...
3
votes
1answer
82 views

how to delete page from navigation stack - c# windows 8

I need to delete selective pages from the navigation stack (winRT- C#) I checked: WinRT - How to ignore or delete page from navigation history and Pop pages off navigation stack in Windows 8 App ...
0
votes
0answers
26 views

nested binding one datatemplate in another datatemplete is not working in winrt

i have an item control and bind a list(subsubname) to populate controls.all controls populated but there is a combobox i want to bind it to another list(Anatomy). But its not working combox displys ...
1
vote
2answers
39 views

How to adjust height of ListViewItem as *?

I have a ListView and am adding 5 ListViewItem. in that the 3rd item's height should take the rest of the height like row definition given in the code. <Grid.RowDefinitions> ...
0
votes
1answer
27 views

How to save a photo location or actual photo as a class variable?

I have a class with a variable named Photo. The user is using the PhotoChooserTask to select the photo, and it is being displayed in an Image control. This part of the application, the chooser and ...
0
votes
2answers
81 views

How to handle RoutedEvents in WinRT Popup

I am playing a Little with Windows 8 and building Windows Store Apps. Currently I am trying to create a popup. I want to tap on a button on a (primitive) user control which is hosted as the Child of a ...
0
votes
2answers
78 views

Windows Store - Loading Images from URL - poor performance

I am populating a GridView with about 40 images that are online. I have got a DataTemplate for my Grid where the Image.Source binds to the URL (e.g. "http://foo.jpg") like so: <Image ...
0
votes
3answers
63 views

How to show current date time in Textblock in TopAppBar-WinRT

i am trying to show the current sysdatetime in Top App bar and i was wondering anyway i can do that in XAML for win store apps.
1
vote
1answer
71 views

Creating Custom Sized Tiles in Blank App -Win RT

Hi , I am trying to create an blank app with my custom sized live tiles in the hub page. I know Windows had predefined tiles template ,but i was wondering if i could achieve the same with the ...
0
votes
1answer
109 views

Running storyboard animations in windows 8 datatemplate

I'm trying to create a to do list in Windows 8 XAML. when I complete an item, I want a storyboard to erase the completed items. How can I get a storyboard to run on items inside a datatemplate? ...
1
vote
1answer
64 views

Replace `Page` with `WinRTXamlToolkit.Controls.AlternativePage`

I'm attempting to use Windows RT XAML Toolkit so that I can have access to the TreeView control. I've created a new BlankApp that contains a MainPage containing XAML similar to this: <Page ...
0
votes
1answer
32 views

Showing content in frame interferes with animation on the page

I ran into a little problem while writing Windows 8 application on C#+xaml. My app has one main page, which is divided in two parts – ListView as a navigation panel on the left, and Frame on the ...
0
votes
0answers
93 views

WinRT FlipView binding fails possibly

I have a xaml page: <Page x:Class="DailyStyleW8.MainPage" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" ...
0
votes
0answers
49 views

Sliding effect on buttons

I have a user control which looks like this: I want to achieve the effect in which when a user clicks on a button, every other button slides side ways and some content according to the clicked ...
0
votes
1answer
27 views

How to set focus on an element inside a MessageDialog

I'm building a windows store app and i'm using the DevExpress tools to make it happen. But i'm thinking this problem might have a general solution. When i'm opening the dialog i want to set focus on a ...
-2
votes
1answer
53 views

How to Design Appbar like in the Stock Sports App in XAML/C# [closed]

I am trying to create the appbar for navigation like the in the stock sports app that comes along with windows 8. Can anybody please guide me on how to do this in XAML/C# ? Thanks
0
votes
1answer
135 views

Creating an image with rounded corners in a windows 8 metro application

I'm trying to create an animated playing card in a windows 8 metro application. I found that by using 2 rectangles in xaml and with a transform and setting the z order I can get a decent looking ...
0
votes
0answers
73 views

WinRT HTML -> XAML conversion custom fonts, inline margins and word spacing

In WinRT C# XAML app, I have an HTML -> XAML converter that I've pretty near custom built for an application I'm putting together. I don't need to handle a lot of different HTML elements or styling ...
3
votes
2answers
97 views

3-pane looping scrolling panel — suggestions

I have a UI implementation challenge (at least for me). The desire is for a scrolling view of 3 panes that loops endlessly: when the user swipes right from pane2 to pane3, they should be able to keep ...
0
votes
1answer
136 views

Windows store app: change bacground color of the Appbar

I have an Appbar on my app and the background is white, any ideas how i can change this? Here is my code: <AppBar> <Button Style="{StaticResource HomeAppBarButtonStyle}" ...
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
110 views

ListViewItem IsSelected Binding - Works for WPF, but not for WinRT

I'm trying to bind the IsSelected property of a ListViewItem to a property in a ViewModel. It works fine in WPF, but in Windows RT the IsSelected property is never getting set. public class Item : ...
0
votes
1answer
58 views

Why binding to MinWidth doesn't work?

In my application I created templated control. Now I want to bind MinWidth to dependency property. For example in my xaml I have <ColumnDefinition Width="Auto" MinWidth="{TemplateBinding ...
0
votes
2answers
52 views

xaml define color based on another color

I am learning WinRT, and i define a custom theme for my program, including overwriting some of the default colors Currently i do something like this in my App.xaml <Application> ...
2
votes
2answers
179 views

Second TextBox showing same Text Selection as first

Long time listener, first time caller here. I'm having a strange issue with the TextBox in WinRT C#/XAML that I hope someone may be able to help me with. Basically, I'm working on creating a Custom ...
6
votes
3answers
128 views

TextBlock binding displays class name instead of empty string

I have the following Windows RT app. I bind a List of Strings to an ItemsControl of TextBlocks. This will display the empty strings as "System.Collections.Generic.List'1[System.String]" instead of ...
0
votes
1answer
120 views

Windows store xaml and c# how to create accordian style list

I have a ListView IsGroupedSource is set to true in it's CollectionViewSource. I'm trying to toggle a groups visibility when it's group header is clicked. <CollectionViewSource ...
0
votes
2answers
52 views

How to set XAML property via a function call?

Good day.... I have a simple page with a rectangle, an ellipse, two sliders and a textblock. The two slider controls (via binding) the height and width of the rectangle. I would like to set the ...
0
votes
2answers
427 views

Creating a Custom XAML TextBox for Windows 8 Store app

I trying to create a custom textbox control in windows 8 XAML. I've right clicked on my project -> Add -> New Item I've then selected Templated Control and entered the name MyTextBox I have then ...
1
vote
1answer
197 views

WinRT C# MessageDialog.ShowAsync - Unauthorized Access Exception - [duplicate]

I don't think I need to paste code. This is C#. Basically, I have a MessageDialog Created, Show it, and have UICommandInvokedHandler being called from a button. Inside that Handler, I do other ...
3
votes
1answer
50 views

Keyboard events not firing in RT app

So I've been working on a pet project for the Windows Store, and have hit a bit of a stumbling block: keyboard events refuse to fire. I've tried forcing focus onto the main page, tried forcing focus ...
1
vote
3answers
193 views

Can I run windows phone 8 on windows 8 RT and vice versa?

Can I run RT apps on windows phone, or windows 8 phone apps on windows 8 RT or PRO? If I need to develop an app to run on RT tablets and on windows 8 phones, what should I do? EDIT When Microsoft ...

1 2 3 4 5 15