Windows Runtime (WinRT) is a Microsoft platform architecture that allows applications to run in a sandboxed environment exposing a 'Windows Modern Style' UI/UX. Not to be confused with Windows RT, the edition of Windows 8 for ARM devices; see windows-rt.
1
vote
1answer
54 views
Getting values of ApplicationData.Current.LocalSettings in static context
I have next code:
public static class AppUser
{
static AppUser()
{
RestorePreviewUserState();
}
private static void RestorePreviewUserState()
...
-4
votes
0answers
38 views
Windows 8 RT Zip Freeware Library [closed]
I'm looking for a free Zip Handling library for Windows8 / Windows RT application.. The only I can find on the web aren't free.
This library must handle:
Password zip
Folder / subfolder
0
votes
0answers
58 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
81 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
40 views
Linking Custom Static Lib with Windows Phone 8 Runtime
I have a custom static library i´m trying to use it with Windows Phone Runtime.
I could not add in to the Windows Runtime.
Is there a way to use Static Libraries in Windows Runtime "Windows Phone 8"
...
1
vote
1answer
40 views
Metro App Detect Printer Charm Open and Close
I have a metro application and would like to detect when the Printer charm is opened and closed. Is this possible?
0
votes
1answer
61 views
SkyDrive WinRT API Login programmatically
As the title says, I'm looking for a way to login to SkyDrive without having to show the UI to login not even once. The reason we're trying to do this is because we need to run some integration tests, ...
0
votes
1answer
73 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 ...
1
vote
1answer
76 views
Why won't WinRT MediaElement.SetSource do what it should?
Very simple. When using MediaElement this code works:
TestMedia.Source = new Uri("ms-appx:///Assets/Test.mp4");
TestMedia.MediaFailed += TestMedia_MediaFailed;
TestMedia.AutoPlay = true;
This code ...
1
vote
1answer
50 views
Localization in WinRT xaml
In my metro app using c# and XAML, I need to localize all the strings used in XAML. But I found that it is not similar to the Windows Phone apps. Please suggest me a way to localize all the text used ...
0
votes
1answer
42 views
Pdf SDK for WinRT [closed]
There were already questions here on PDF SDK for Win 8 (RT).
I wonder if smbdy tested which one - pdftron or foxit supports all the UI features for tablets - Pinch Zoom , TouchScroll etc?
Thnx
0
votes
1answer
70 views
How to trigger a storyboard on a list item when it is tapped and have the page be notified when the animation ends?
I'm porting a Windows Phone 8 app to Windows 8 and I have a scenario where the user taps an item in my list control / grid view and I want to play an "activation" animation on the item, wait for the ...
0
votes
0answers
82 views
Extended Splash Screen: How to use it correctly (MainPage never shows up)
I'm trying to implement an extended splash screen since my app grew bigger over time and some of the web requests should be done before the user sees the main page. From the console I can see that ...
0
votes
1answer
25 views
Plugin Framework for Win-Rt
I was looking at Microsoft.Composition but i don't think that is quite what i want. I have a bunch of UserControls, that are each build into it's own assembly, but they each extend the same ...
0
votes
1answer
144 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 ...
-1
votes
2answers
68 views
String.ElementAt() does not work in Windows 8 app [closed]
I am struggling to find any resources to explain why the following code does not exist in windows 8 apps(i hate using ToCharArray, i am far too lazy for that).
encoded.ElementAt(z)==';'
This ...
0
votes
1answer
55 views
Bind Images With System Folder Path in XAML/C#
I am developing an application in XAML/C#, where path of the image in stored in the list. The path contains spaces because it is the path of the file with in the computer C Drive. I am unable to bind ...
0
votes
1answer
27 views
App Password for Windows Store App
I'm developing an App which should have a Login, so the user has to authenticate itself every time he uses the app.
The app should not require the user to have an connection to the network; the ...
-2
votes
1answer
100 views
Passing a JS callback function to C# RT Component error: “Unable to cast object of the type 'mydb.SQLite3JSNoCallback' to 'mydb.SQLite3JSNoCallback'”
I have a Javascript Windows 8 App. I am writing a WinRT Component DLL using C# for interfacing with a database.
For all functions such as OpenDB, ExecuteUpdate, ExecuteQuery (returning one row, ...
0
votes
0answers
61 views
Static properties / ViewModel (C#, WinRT)
I have a static UserAccount class in my WinRT project. This class contains various static properties about the currently logged in user (like Username, e-mail address, ...). I need this info to be ...
0
votes
0answers
16 views
Cannot resolve TargetProperty exception when animating a custom SolidColorBrush DependencyProperty
I created a templated control with a custom dependency property of type "SolidColorBrush". It works like a charm when we set its value. But I can't manage to animate the property. It crashes with ...
-3
votes
1answer
29 views
Windows8 - Data Loading layer [closed]
I want to block the app and show a black or a black transparent layer with a ProgressRing showing that the app is loading data.
Thanks
2
votes
0answers
53 views
TopApp Bar in windows 8 xaml
i am using app bar in multiple pages within my Windows 8 XAML application. I came to face some unusual problem with my app bar. For the first time, when I login to my application, the top app bar ...
0
votes
2answers
66 views
Windows RT - synchronous usage of StorageFile
I want to write a Win8 app, there I use a Configuration-class with a static member, which is loaded once at startup and can be accessed from everywhere at runtime.
So, the main problem is, the ...
1
vote
1answer
50 views
One Table, Several Views, one C# Class
I have a single c# class defined as
class HighScore
{
public int Id { get; set; }
[DataMember(Name = "PlayerName")]
public string PlayerName { get; set; }
[DataMember(Name = ...
0
votes
0answers
50 views
WinRT Win8 c# Error: Unable to move the replacement file to the file to be replaced
I am writing text data to a picked file. I am torture testing it with automated testing and often encounter this error:
var st1 = new Stopwatch();
st1.Start();
var successfulPickedSave = true;
try
{
...
0
votes
2answers
43 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 ...
0
votes
0answers
45 views
Windows store app:What are the .pdb folders
In my project folder i see that there is a lot of .pdb folders as shown in the picture below:
What are these folders? and is there anyway i can remove or hide them?
0
votes
1answer
60 views
Package.Appxmanifest - Any way to get to portion of this in code?
I know you can get to Windows.ApplicationModel.Package.Current and use Id.Name to get the name, but this seems to be the Package Name in my manifest. A rather long string of numbers and letters.
How ...
1
vote
0answers
44 views
WinJS share target with write access to file
My application acts as a share target for any file.
I have read access to the instances of Windows.Storage.StorageFile objects, through:
if ...
0
votes
2answers
47 views
trying to load page with WinJS controls into IE 10.0
From VS2012, I right click on default.html page and choose to run this page in IE (10.0). Problem is that any WinJS controls that I have on the page aren't been displayed. I get a warning about ...
1
vote
1answer
74 views
Create Keyboard “Extension” like Windows 8 Metro IE
In Windows 8 Metro Style IE, if you click on the address bar, there will be "bookmark" tiles show up on the top of the address bar. If you are on a touch device, the tiles will show up above the soft ...
0
votes
2answers
53 views
Metro App CollectionViewSource ObservableCollection Filter
It appears that filtering an ObservableCollection with CollectionViewSource is not possible in WinRT:
See here!
I can filter using LINQ, but how do I get the UI to update if changes that affect the ...
0
votes
2answers
103 views
Why is PayPal not working inside a WinRT WebView control
I am writing a Windows 8 app where the user is able to do in-app purchases. Our Client provides us with a REST API. Basically I get product information from this REST API and if the user chooses to ...
0
votes
1answer
91 views
Windows 8 apps - what is the best place to handle charms events?
Does it matter where charms events such as SettingsPane.CommandsRequested or DataTransferManager.DataRequested are handled and if so what is the recommended place to do that - a Pageconstructor, ...
3
votes
1answer
90 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
...
1
vote
1answer
45 views
Updating an entry using Azure Mobile Services
I am currently inserting data into a table using the below method.
public async void PerformRegistration()
{
var personTable = App.MobileService.GetTable<PersonTable>();
var person = ...
1
vote
2answers
59 views
Simulating a Windows 8 Store apps purchase
I am trying to put together code that simulates purchases for a Windows 8 (Store) app.
The code is pretty simple and uses the Windows API:
var result = await ...
0
votes
0answers
28 views
How do I change the $(RootNamespace) macro in a WP8 C++ Component in VS 2012?
I am trying to change the $(RootNamespace) of a WP8 runtime component to solve the same problem that this question is trying to solve: Changing namespace name of C++ component in Windows Phone causes ...
0
votes
1answer
33 views
How to get a Brush from a RGB Code?
How can I get a Brush to set a Background of e.g. a Grid from a RGB Code.
I hace the RGB Code as a int:
R = 12
B = 0
G = 255
I need to know how to convert it into a Brush
0
votes
3answers
56 views
Find which UI Element the mouse is over
How to find the UI Element which is directly over the mouse over point.
Here Experience Age, Experience Month are Custom controls.
How do i get the Experience Month UIElement?
0
votes
1answer
23 views
How to set the speed of audio in media element?
My objective is to increase the speed of audio.Is there any way to achieve this in winRT media element.
Thanks in advance
3
votes
1answer
73 views
Catch an async lambda exception
I am working on Windows 8 (using C#) and when using the async keyword there's a scenario where i can't seem to handle exceptions well.
The scenario involves launching an async lambda, posting it to ...
0
votes
1answer
27 views
All folders in Storage.Knownfolders are suddenly returning null on all our systems
All the Known Folders on all our systems are suddenly returning null.
Windows.Storage.KnownFolders.MusicLibrary.Path
Windows.Storage.KnownFolders.PictureLibrary.Path
...
1
vote
1answer
49 views
Mouse.GetPostion(null) Equivalent in WinRT
What would be the equivalent for Mouse.GetPostion(null) which is in WPF.
I can get the position of pointer from the pointer event args. but how do i get the position without any event. like ...
0
votes
1answer
33 views
Drawing a line on Bing Maps through 180 deg long
Drawing a line through 180 degrees longitude on the Bing Maps control doesn't work as I expect. 180 degrees longitude runs from north to south through the Pacific Ocean, so if I wanted to draw a line ...
0
votes
1answer
24 views
View the html designer within VS 2012 without switching to Blend
I am using VS2012 for creating html/javascript type of app for windows 8 store. When I create a html file, there is no way for me to view the html file unless I launch it in the blend. Sometimes when ...
0
votes
0answers
28 views
Using Resources.resx in Windows Store Library (DLL)
I am building a Windows Store Library which uses strings from Resources.resx.
I am unable to figure out a way to do it. Looked through a lot of sites, tried a lot of options such as directly using ...
1
vote
1answer
73 views
Why is the result of document.getElementById null in this case?
I am basically new to JavaScript and WinJs stuff. Following this tutorial to learn it.
My default.html is below
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
...
0
votes
2answers
64 views
Call parent page's method from a user control
I have a user control which is displayed as a popup. I need to call a method from its parent page when this user control is dismissed by user. How can I do that?
I tried calling it in 'unloaded' ...





