Windows Store apps (formerly Metro-style applications) are built on the Windows Runtime (WinRT) and are available on the Windows Store. They target Windows 8 and Windows RT using .NET for Windows Store Apps and are immersive full-screen applications.

learn more… | top users | synonyms

0
votes
2answers
15 views

How do I get the NetworkName(SSID) of the currently connected network in Windows Store Apps (C#)?

I am trying to get the NetworkName (SSID) fo the current network connection in a windows store app. I see NetworkInformation.GetInternetConnectionProfile().GetNetworkNames(), but how can there be ...
0
votes
1answer
28 views

ComboBox displays repeated Items in Windows 8 Surface

One of my question and i wonder sometimes is, how ComboBox displays Items repeatedly in Windows 8 Surface. I have the Collection which is bound to ComboBox in Windows Store apps. I checked this ...
0
votes
0answers
31 views

Display Image in webview form local html Image with CSS in C#

In the local HTML page if I have image means, I am getting image "src" value & replacing with Base64 & getting that XmlDocument value and then loading in Webview. xmlDoc.GetXml(); string ...
4
votes
2answers
350 views

Windows 8 Metro Tiles not working in theme despite code being correct

Set up Win 8 Metro Tiles as instructed on Microsofts - http://www.buildmypinnedsite.com but they just don't work for me. My site is http://themixtapesite.com Here is my header code with the tags in ...
0
votes
0answers
7 views

Windows store apps and dependency injection [duplicate]

I'm building a Windows 8 app (not RT), and are looking for guidence on how to implement dependency injection in the application, and which container should I use? Thanks, Rune
-1
votes
1answer
32 views

FileIO.AppendTextAsync throwing random exceptions when used in a loop

So I have a bit of a peculiar problem. I have a set of methods like so: StorageFile file; public void WriteStuff() //This implements an interface, so can't be changed to async with a task returned { ...
0
votes
0answers
20 views

Azure Block Blob error - No mapping for the Unicode character exists in the target multi-byte code page

I'm reading data from an Azure Block Blob in a Windows 8 Store app. The data is XML and works fine when reading English data, but fails reading the Spanish version. The error I'm getting in the ...
0
votes
1answer
31 views

Create shortcut in a metro style app

Problem: I would like to have my app multiple icons on start screen, I saw such with some online camera program (I forgot the name). Question: Can a Windows 8 Store program create an own shortcut to ...
0
votes
0answers
6 views

3D-transformed grid-view not accepting touch input

In my windows store app, I have a grid view with horizontal scrolling. If I don' change any of the transform proberties (so everything is zero) I can easily scroll by swiping over my screen. But as ...
0
votes
1answer
25 views

System.Threading.Thread replacement in windows store apps

Is it right that 'System.Threading.Thread' douesn't exist in Windows Store Apps? And if it is, what is the replacement (I want to run a function in the background so the UI douesn't freez while ...
2
votes
0answers
54 views

Blurred textblocks when used in animations

I am simulating the semantic zoom effect in a Windows Store app using animations between two canvas'. However when I "zoom out" the TextBlock that appear on the canvas, appear as VERY blurry until the ...
0
votes
2answers
71 views

ListView SelectedItem not updating UI after ListView been cleared

I'm using Caliburn Micro on a Windows Store App. I have a ListView which has a SelectedItem that works the first time I use it. However, when I clear the ListView and re-bind it to another ...
0
votes
0answers
13 views

Windows Store App and envinorment variables

I want to know the windows installation directory from a Win8Store app. I thought, through envinorment.getenvinormentvariable I can get that, but there is no such option for me. (I even tried to ...
0
votes
2answers
29 views

Error: BindingExpression path error:

I am using Win 8 Store Prism framework and have built a page and associated viewmodel. I am trying to get my first binding to work but have failed an uncovering the cause of this error. (I wish I ...
0
votes
0answers
13 views

How to detect the context menu opening over a WebView (Windows Store App)

I am trying to detect a long press/right click that opens the context menu over a WebView. I tried detecting a right click by using JavaScript (WebView.InvokeScript) however by capturing this right ...
0
votes
0answers
6 views

Does VLD support windows store apps? If so how is it configured?

I am trying to get Visual Leak Detector working in my C++ Windows Store App using Visual Studio 2012 and I've got it compiling but when running the app I get the following exception on startup: ...
2
votes
1answer
87 views

Windows 8 AdControl using HTML5

I have a Windows 8 AdControl set-up in this way: <div id="adControl" style="width: 728px; height: 90px; border: solid 1px red; visibility:visible;" ...
0
votes
1answer
17 views

the file is not a valid vsix package in vs 2012 express for windows 8?

While adding the sqlite runtime tool to my project in windows 8 then showing the error the file is not a valid vsix package.How to resolve this?any one please tell me. Thanks,
1
vote
1answer
126 views

saving state between pages when creating a windows 8 app

I've been following the Create your first Windows Store app using C# or Visual Basic tutorials provided by Microsoft but am having some problems saving state when navigating between pages. Create ...
1
vote
3answers
530 views

Windows Store Apps: Change the icon of an AppBar Button?

I want to change the icon of an AppBar Button in my Windows Store app. I found that the AppBar buttons have XAML markup that looks like this: <Style x:Key="PicturesAppBarButtonStyle" ...
0
votes
1answer
23 views

Animating multiple objects in Expression blend

I created a game for windows 8 app where a box is on the screen and the when the user picks the mode they want to play on the clock starts and images will fly up from a box and the user must click on ...
-1
votes
0answers
10 views

Can we use VoIP for Windows 8 Surface (Windows Store app) [closed]

Need a library to use SIP for Windows 8 Surface (Windows Store app)
0
votes
1answer
53 views

WCF and Windows Store apps, ConfigurationErrorsException

I am getting a "ConfigurationErrorsException" when I try to create a new Instance of the service. Edit: My App and the WCF service are not on the same machine. The Wcf service is running on a ...
1
vote
2answers
707 views

jQuery.append, type input, and Windows Store App (HTML/CSS/JS)

I have this Window Store App where I'd like to add some markup dynamically, and my problem can be boiled down to this: Working $('.some-element').append('<input ...
-1
votes
1answer
145 views

how to display local html content with images in windows 8 webview?

I am developing a reader application which has html content and images in windows 8 store. <!DOCTYPE HTML><html><head><title>A/B/C share</title> <meta ...
0
votes
0answers
29 views

Detect how long a user has been inactive within a Windows 8 Store app or system wide?

I am trying to detect how long the user has a been inactive within the app or system wide with the Windows 8 Store apps API. I look into the system trigger User Away however that just tells you when ...
0
votes
1answer
41 views

How to use 'mailTo' for multiple email recipients?

Is the following syntax correct? var mailto = new Uri(String.Format("mailto:{0}&subject={1}&body={2}", "akiptev@gmail.com, fozzi@gmail.com" , subject, message)); apiResult.Result = ...
1
vote
1answer
62 views

Winrt Scrollbar not working

I am trying to use scrollbar (not scrollviewer) in window store application and it seems there is a bug. It doesn't display at all. It occupies the space as per set width but nothing else is visible. ...
1
vote
1answer
42 views

Check file exist in current folder in isolated storage [duplicate]

In Windows Store App's(c#) I check if file exist in nested folder in isolated storage with using this method: public static async Task<bool> CheckIsFile(string fileName, StorageFolder folder) ...
1
vote
1answer
44 views

Custom SelectionMode for GridView. Select only on right click

I'm trying to implement a bit complicated selection behavior for GridView in my Windows 8 app. I know that it is be possible as OneNote app from Windows Store implements exact same behavior as I want. ...
0
votes
1answer
38 views

Proxy settings in WebView for Windows 8 Store Apps

I am trying to set a proxy for a WebView for Windows 8 Store apps. It seems that the functionality is not built in yet. I could get the html through a proxy using IWebProxy and HTTP Client and load ...
1
vote
1answer
37 views

Sample Callisto Settings Flyout in VB

Does anyone have a sample for adding a Callisto settingsflyout in VB? There are several samples in CS but I can't seem to make sense of them in a VB mode. I want to add one toggle switch and save it ...
2
votes
1answer
419 views

Create GridView with Grouping manually in Metro Style App

Ho is it possible to define the grouing in XAML without using Templates? I like to define my GridViewItems inside the GridView like: <GridView> <GroupItem> ...
2
votes
1answer
79 views

Can we export controls to PowerPoint in windows 8 store app

As we are developing an windows store app, as of requirement we need to export the charts or grids which were presented in the application to PowerPoint. As previously(previous projects sliverlight or ...
2
votes
1answer
33 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 ...
9
votes
1answer
91 views

Opening settings charm while Camera open closes the camera in windows 8 / WinRT

I am using CameraCaptureUI for opening camera in my application; Here is the code what iam using var camera = new CameraCaptureUI(); camera.PhotoSettings.AllowCropping = false; ...
0
votes
3answers
116 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 & ...
11
votes
1answer
111 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 ...
1
vote
1answer
112 views

Drag & Drop VariableSizedWrapGrid items with touch gestures in Windows 8 Store App (C#)

As a foreword (and to eliminate any misunderstanding), I do have the required functionality working with the mouse. All I need is to achieve the same functionality with the touch gestures. ...
0
votes
1answer
17 views

Dialog Popup doesn't rearrange when device rotated in windows store apps

I use dialog popups in my Windows Store app using a Popup object with the child set to a Page. However, the dialog doesn't resize when the device is rotated like other Page's do automatically. ...
0
votes
3answers
53 views

Could I know if my app is running on Windows RT with C#?

I know that there is no way to get OS version in Windows Store app, please let me explain more. My app is a Windows Store app programming with C#. Some features of my app is depend on another desktop ...
1
vote
2answers
30 views

How to commit the multiple transactions from different users using concurrency in windows 8?

Any one give me idea behind for committing the multiple transactions at a time in windows 8. i.e by using concurrency need to commit all transactions at a time .is it possible ?if ok then please give ...
0
votes
1answer
35 views

Directly call click event in load event

protected override void LoadState(Object navigationParameter, Dictionary<String, Object> pageState) { // TODO: Assign a bindable collection of items to ...
1
vote
2answers
72 views

C# windows 8 app creating a file

I'm trying to create a file then write to the file and read from it as well... kind of like settings for my app to load every time it loads. Why is this not working for me? I'm running visual studio ...
0
votes
1answer
41 views

Is there an AppBar button style that means “Open in Web Browser”?

Is there an AppBar button style that means "Open in Web Browser"? This seems like a pretty common scenario, so maybe there's already a Microsoft style for it. Otherwise I guess I'll have to roll my ...
-4
votes
3answers
100 views

How to parse strings with c# in Windows 8? [closed]

I've a web page with this part of HTML code: <meta property="og:type" content="photo" /> <meta property="og:description" content="descrizione"> <meta property="og:site_name" ...
0
votes
1answer
33 views

Adding PointerDown/UpAnimation to Button control - Windows 8 XAML

I'm trying to add the animate the button control using XAML. Below is the style applied to the button. <Style x:Key="ContentButtonStyle" TargetType="Button"> <Setter Property="Width" ...
0
votes
1answer
35 views

Winrt xaml page takes times to load, show I want to show Loader

I am working on a winrt xaml application. I have a page that contains too many controls on it. When I click on a tile of main page that loads this big page application gets hang and after some time ...
-1
votes
1answer
27 views

make a custom frame in camera for win 8 store app [closed]

I want the user to capture a image in a predefined bounding rectangle which is displayed whrn the camera app opens in a win 8 tablet.. how can i do that using the camera capture class in Win 8 Store ...
0
votes
1answer
38 views

Passing JSON over Windows-Runtime-Component

To hand over data in Windows Store Apps from Windows Runtime Components to managed code or JavaScript, there are besides the primitive types other supported types like IEnumerable<T>, ...

1 2 3 4 5 38