This tag is for the XAML UI framework specific to [Windows-Store-Apps] on [Windows-8]. [WinRT-XAML] is a subset of the general XAML specification and a superset of [Windows-Phone-8].
0
votes
1answer
9 views
Role based View XAML
I am developing a WinRT app which has many user roles. The View of many pages in my app change based on the Userrole
For eg. I have a Student role and a Professor role. When the Student logs in he ...
0
votes
0answers
9 views
Is there an itemcontainergenerator.status property in winrt?
I'm trying to highlight the playing song from a listview, and running into some trouble. Often, lvicurrent is null. Here is my code...
private void highlightItem(String focused)
{
...
0
votes
1answer
14 views
Vector.AngleBetween in WinRT
Currently i am converting a Desktop application to Windows 8 application. To get a angle between 2 points in desktop application they use Vector.AngleBetween(vector1, vector2). Using "Point" i got the ...
0
votes
2answers
29 views
Is there any Memory limitation for a Windows 8 application as like in windows phone?
I am creating a image processing application in Windows 8.
Since am playing with images I wanted to know is there any memory limitation for Windows 8 applications?
Depending on that I can reduce ...
0
votes
0answers
15 views
Using Sparrow Toolkit in WinRT App Dev
I am developing app for Windows 8 store.
How do I use sparrow toolkit charts in my WinRT Application.
Can anyone give some idea or post some sample code which can help me work with it
...
3
votes
1answer
32 views
Copy and rename image to folder on Win 8 app
I have an image on my Win 8 metro app and I want to copy it to a folder previously set and rename it to the actual date and time.
The only thing I can't get to work is the image copying.
private ...
0
votes
1answer
32 views
Changing the page header text in XAML
How do I change the default page header in a Windows 8 XAML application? The question is simple, just I am still learning XAML.
<Page.DataContext>
<local:MainPageViewModel/>
...
0
votes
0answers
17 views
Modern UI Charts for Windows 8 breaks with a message Layout Cycle detected. Layout could not complete
https://modernuicharts.codeplex.com/workitem/16209
I have a requirement where I have to bind around 40 series to a column chart. When I tried binding the application breaks with a message "Layout ...
0
votes
1answer
30 views
How to get Listview ItemClick Vallue in Relay Command
Hi i'm working in windows store app with MVVM pattern and i have some problem in catch the listview itemclick value in relay command. Now i got the selected item value.But don't know how to get ...
1
vote
1answer
21 views
RichEditBox crashes in certain condition.
Rich edit box crashes for me if I try to set the fontsize to it.
C# code:
REB_Value.Document.SetText(TextSetOptions.None, "Company Name, \nStreet name with zip code. \n123-456-7890");
The ...
0
votes
0answers
21 views
How to modify App created from Split App template to support grouped ListView headings when programming in WinRT?
When creating a Windows App Store app in Visual Studio Express 2012 for Windows 8; if one was to create a new app using the provided Split App template, what specific modifications would be required ...
0
votes
1answer
25 views
Caliburn.Micro rebind ContentControl on navigation GoBack
I'm using Caliburn.Micro within WinRT application
Here is my main VM:
public class MainViewModel : Conductor<Screen>
{
protected override void OnActivate()
{
if (ActiveItem == ...
1
vote
1answer
39 views
OnSelectionChanged event for chart controls in Modern UI Charts for Windows 8
I am using Modern UI Charts for Windows 8 and I need to do a drill down when the user selects a series item in the chart
(for eg: I have a Column Chart which shows a student Year wise performance and ...
8
votes
0answers
49 views
Implemeting DragStarted DragDelta events in windows 8 / WinRT
How I can attach DragStarted DragDelta events to a grid in windows 8 / WinRT. I did the Same in windows phone with GestureService.GetGestureListener() method. I tried to replace the code with ...
0
votes
1answer
35 views
Different item templates in ComboBox
In WinRT XAML I have a ComboBox which displays some complex item.
Is it possible to declare and bind two different item templates for 1) the "normal" selected item (ComboBox is closed) and 2) the ...
0
votes
1answer
68 views
Not able to use Modern UI Charts for Windows 8
I am trying to use Modern UI Charts for my Windows Store app but I am not able to get it working.(Cannot see the Chart)
A similar issue was logged by another person here along with the code
Can ...
0
votes
1answer
14 views
Metro App Customised ListView KeyDown event not firing
I have a Metro application with a ListView that has this definition:
<ListView Grid.Row="0" x:Name="lvData" CanDragItems="True" CanReorderItems="True" SelectionMode="Extended">
...
0
votes
0answers
12 views
Metro App Customised ListView Mouse Scroll
I have a Metro application with a ListView that has this definition:
<ListView Grid.Row="0" x:Name="lvData" CanDragItems="True" CanReorderItems="True" SelectionMode="Extended">
...
1
vote
2answers
70 views
Conditional formatting on binding textblock WinRT-XAML
I started my application a month ago, and this is my first time building mobile apps and first time using XAML even though I had some previous experience with C#.
This is the data format that i used ...
1
vote
0answers
25 views
WinRT alternative for Windows phone GestureListener
Can anyone please suggest alternative methods for these windows phone events.
var gestureListener = GestureService.GetGestureListener(ImageContainer);
...
2
votes
0answers
19 views
PreviewKeyDown for Windows Store App ListBox
Is there an equivalent to the PreviewKeyDown for a Windows Store App? It isn't available.
I have exactly the same problem as described here:
I have a ListBox with a TextBox above it. I would like ...
0
votes
1answer
16 views
ComponentOne for WinRT: Gauge Pointerlength error?
Whenever I add a ComponentOne gauge to my page, I receive the following exception:
WinRT information: The property 'PointerLength' was not found in type
'C1LinearGaugePointer'.
my Xaml looks like ...
0
votes
0answers
22 views
How to sync two MediaElement controld with SAME video in Windows 8 Store Application? (not WPF)
I'm working in a Windows 8 Store Application. Application has a video URI to play it in a MediaElement.
I'd like to crop a rectangle from video in MediaElement and show it in other control. Both ...
2
votes
1answer
27 views
How do I refresh a bound GridView after the ObservableCollection<T> has be sorted?
The implementation is a for a Refresh button. I use .Clear() to empty the list, then add back in the latest data. After the data is loaded I use the following function to then sort the list:
public ...
0
votes
1answer
40 views
Windows 8 RT XAML MediaElement controls overlaid on top of video
I have seen numerous examples of the MediaElement used for video playback in Windows RT XAML applications.
I would like to have the controls overlay the video, rather than place controls within the ...
0
votes
1answer
33 views
Simpler possibility for groupedview
I have a problem. I want to write an Windows 8 application and think that a Grouped GridView, like in the Sample Grouped Items App Template contained in Visual Studio, would be a good choice for data ...
0
votes
1answer
36 views
How to do binding to Datacontext in different page
i have a textblock in mainpage.xaml. I have another page which has a textblock whose value is bound to observable collection and its value changes depending on user events on that page. How can i ...
0
votes
1answer
19 views
How do I show, then hide the AppBar after a page loads?
After the page is visible to the user, I want the TopAppBar to show up for a second or two, then set IsOpen to false to close the AppBar. In essence I just want to briefly show the user the ...
0
votes
1answer
75 views
custom virtualizing wrap panel for winrt-xaml
i'm trying to create search feature in my apps, but when the search result is producing more than 1000 row, an error show up which say :
Exception {"Not enough quota is available to process this ...
0
votes
1answer
43 views
How to open URL having POST request method in WebView in Windows Store App
I need to open some URL in WebView from the source code of an another URL. I am getting source code of that URL via ScriptNotify event. That URL contains a <form /> with GET/POST request & ...
0
votes
1answer
18 views
Event trigger not working on RichEditBox XAML-C# windows 8
I am using RichEditBox with XAML and C#
I have following 3 events in XAML and corresponding handlers in C#(back code)
DoubleTapped="RichEditBox_DoubleTapped" RightTapped="RichEditBox_RightTapped" ...
0
votes
0answers
31 views
Effect of pinch & zoom on height/width of image
I have pinch & zoom effect on an image. Is there a way I can reflect the changes in height and width of that image? I want to store the changes user has made to the size of image for later use.
...
1
vote
0answers
15 views
WinRT - Word dictionary for textbox's too large
I have a Window 8 store application that I would like to be able to use an exteremely large custom dictionary of words for (1.2MB). We've been able to add words to the microsoft dictionary in a user's ...
0
votes
2answers
34 views
XAML Changing Binding and DataContext Element
If I have a class
class ContentList
{
public string Content1 { get; set; }
public string Content2 { get; set; }
}
and a textbox in my XAML file with a binding
<TextBox Text="{Binding ...
1
vote
0answers
14 views
Win8 app to search a printer on a WLAN and let user select a printer and take the printout
I want to implement the following feature in win8 application:-
App detects WLAN name which is in a specific format that enables to detect building and floor
App shows printers that are on the same ...
0
votes
1answer
38 views
Issue with Swipe inside ListView
I am using a ListView in a Windows Store App.
Whenever I start swiping(using simulator tap mode) over the list view all the items move together as illustrated in the picture.
How can I disable this ...
3
votes
1answer
82 views
How can I use Reactive Extensions to throttle SearchPane.SuggestionsRequested?
Reactive Extensions allow me to "observe" a stream of events. For example, when the user is typing their search query in the Windows 8 Search Pane, SuggestionsRequested is raised over and over (for ...
0
votes
1answer
30 views
How to create a single-color Bitmap to display a given hue?
I have a requirement to create an image based on a certain color. The color will vary and so will the size of the output image. I want to create the Bitmap and save it to the app's temporary folder. ...
0
votes
1answer
44 views
Event handler function isn't firing up for created dynamically checkboxes
First of all, I have to mention that i'm a newbie at c#. I'm developing an windows 8 metro app with xaml and c#.
I created an array of checkboxes dynamically and assigned a pointerpressed event to ...
0
votes
2answers
38 views
How do you bind to the property of a User Control?
In Windows Store Apps, you create a user control to encapsulate and reuse code-behind and layout XAML. A simple user control might look like this:
<UserControl>
<StackPanel>
...
1
vote
1answer
21 views
How is App.OnSearchActivated different from App.OnActivated w/ActivationKind.Search?
If you are implementing the Search Contract on a Windows Store App, then in your App.xaml.cs you override the OnSearchActivated method like this:
protected override void ...
1
vote
1answer
104 views
Open PDF using C#— Windows 8 Store Application
I want to be able to open a PDF using the native Windows Reader Application when a user clicks on a button. So far I am able to use the following code to successfully open files that end with the ...
0
votes
2answers
108 views
About dynamically created radio button in c#
I'm trying to develop a Windows 8 Metro app where i needed to create an arbitrary number of radio buttons, but the Checked event handler is not firing up. I read in some post that I've to enable ...
2
votes
1answer
57 views
How to Copy Local Storage Image to Clipboard WinRT
I have an application, where user download images to the Local App Storage, it works like this because in order for the application to display content properly we dont want the user to have direct ...
0
votes
1answer
20 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 ...
1
vote
1answer
43 views
Launch Windows 8 Nokia Maps
How to use Nokia Maps in Windows 8 Store application ? I used it before in windows phone 8 but I can't find any sdk for Windows 8
0
votes
1answer
47 views
Custom Control Code Behind (winRT XAML C++)?
I am creating a custom control. The idea is to use 4 sliders to set the RGBA values and a rectangle to display the resulting color. I have created a Dependency Property for the color result so I can ...
0
votes
1answer
20 views
Unknown member 'SortDescriptions' on element 'CollectionViewSource'
This is a real newbie question. I feel dumb that I have not figured it out yet. I am trying to add a sort to my CollectionViewSource in my Win 8 App.
<CollectionViewSource
...
0
votes
0answers
39 views
Overlay Text On Video — Windows 8 Augmented Reality
For a Windows 8 Store Application I have been trying to simply overlay text on live video. For a basic augmented reality application. The application I am building needs to do this without having to ...
0
votes
0answers
30 views
False error in XAML parsing
I'm getting a persistent non-fatal error when the building my WinRT project
Error 1 Closing tag for element '' was not found.
Of course there is an ending tag in my XAML and the project builds and ...





