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

1
vote
1answer
37 views

What's the purpose of FolderInformation and FileInformation?

I am trying to find out what FolderInformation and FileInformation are for and how to use them. So far I learned that FolderInformation is more to act on the folder itself and StorageFolder for the ...
1
vote
1answer
248 views

How does DataWriter's StoreAsync work under StreamSocket?

I am creating socket client (TCP) in Windows Store (8\Metro\RT) app and I am trying to send data using this code: await _socket.ConnectAsync(new HostName(ipAddress), port); _dataWriter = new ...
0
votes
1answer
109 views

How to create a bitmap cropping control in WinJS

I want to create controls that lets the user decide crop area of a bitmap, in the common way, having four corners on the image. I saw that there is a sample C# app in the Microsoft site for this - ...
0
votes
2answers
264 views

Can Microsoft.Phone.Maps.Services be used in Windows Store Apps?

Can the Microsoft.Phone.Maps.Services namespace be used in a Windows Store Apps app? If not, is there a suitable alternative available? I was directed to this which shows some code that's just what ...
0
votes
1answer
73 views

How to use RangeBaseValueChangedEventArgs event parameter in custom control like slider

Now I custom a control like slider, and I want to custom a ValueChanged event handle like the slider's ValueChanged event handle. the event as follow: public delegate void ...
2
votes
1answer
307 views

Getting URL from WinJS.xhr Response

Suppose I have a loop in which I call WinJS.xhr() on multiple addresses. In the response handler, is there a way to determine the address from which the response is being handled? Either by ...
0
votes
1answer
112 views

Resize an Image in a Windows Store App

I'm trying to copy an image file to local storage and resize it (for the purpose of displaying it in a live tile). I'm primarily just tinkering here, this being my first Windows Store app and all. ...
0
votes
1answer
56 views

Why does this Hyperlink fail or disappear?

I tried to replace the second of these two buttons: <Button x:Name="buttonRecordWhereabouts" Margin="24" Tap="ButtonRecordWhereabouts_OnTap">Record My Whereabouts...</Button> ...
0
votes
0answers
37 views

Detecting Hosts Listening on a Given Port

I'm writing a small Windows Store app in Javascript which will interface with hosts on the local network on a known port number. Currently I have the user enter the IP or name of the host, but I'd ...
0
votes
1answer
161 views

Get Physical Path of KnownFolder

Is there a way to determine the physical path for a known folder in a Windows Store JavaScript app? My app manifest declares access to the pictures library and I can get the files for that library: ...
0
votes
1answer
169 views

Get the list of hostnames connected in LAN for Windows Store Apps

I actually tried with the following code, which gave me a result of the local machine Ip address, name and the server Ip address var hostNamesList = NetworkInformation.GetHostNames(); ...
0
votes
1answer
73 views

Edit Additional Template in VS 2012 for windows 8

II am developing a windows metro application,I want to edit tempalte for listview and listviewitem, from where I can do this? Thanks
1
vote
0answers
298 views

Get the list of connected machines IP address of lan for Windows Store apps

Actually I tried to get the list of Ip Addresses of the LAN for Windows Store Apps using Xaml and C#. Can Any one Please tell me how to do this and referred this link How to get LocalNetwork IP ...
0
votes
1answer
161 views

Is There a Settings Viewer/Manager for Windows 8 apps?

For testing my roaming and/or local settings, I'd like to be able to clear all the settings. I could do it like so, I guess: App.roamingSettings.Value["SomeVal"] = string.Empty; ...
1
vote
2answers
113 views

Why does the exact same code produce different results?

After this code: if ((App.roamingSettings.Values.ContainsKey("FromMonthSection1")) && (!string.IsNullOrWhiteSpace(App.roamingSettings.Values["FromMonthSection1"].ToString()))) ...
0
votes
1answer
64 views

how to get the result of share in windows 8?

When I share content to other Windows 8 apps, the share attempt may succeed or fail. How do I determine what the result was? For example, if I share an image, but due to format or image size ...
0
votes
0answers
26 views

In Windows Store App. How to access Name of the Page within the UserControl the Page used

I have a UserControl which was used by a Page. I want to access the NAME of this page within the UserControl. But the code below does not work. public sealed partial class UcTopNavBar : UserControl ...
3
votes
1answer
261 views

Signing-in to use Live SDK, Windows Store app

I am developing an application (Windows Store) to access SkyDrive content. To login to Live I am using the below code snippet. try { var uri = ...
0
votes
1answer
297 views

Change selected ListviewItem style in c#

I am working on a module in windows store application, where I am using listview control to show items in the list, whenever an item is selected, it gets highlighted with purple color and a tick bar ...
0
votes
2answers
136 views

My Windows 8 app doesn't appear in other stores

I developed a windows 8 game, and I can't find it on the other Stores. Even If I changed the preference of the Windows store application ... no result for my application, I already checked all ...
1
vote
1answer
179 views

Is the SQLiteConnection disposed inside of a Transaction?

This works, but Resharper says, "Access to disposed closure" on the commented line using (var db = new SQLiteConnection(SQLitePath)) { db.CreateTable<Locations>(); ...
1
vote
1answer
68 views

User-control based program

I am trying to create a new Windows Store-app, but before creating too many user-controls, I will like to know something that I have no luck googling If my program only have one page, and the code ...
0
votes
3answers
78 views

Assigning text property randomly to textblockes in C# windows store apps

I assigned 50 text blocks with names _1, _2,_3,....,_50 and I managed to store the name in an array using for loop. Like this: string[] textname = new string[51]; for(int i = 1; i <= 50; i++) { ...
3
votes
2answers
662 views

Windows Store App - WinJS: 0x800a1391 - JavaScript runtime error: 'Windows' is undefined

I'm trying to load a Google map into Windows Store Application. However, having a problem with a native Windows RT function: Windows.UI.Popups.MessageDialog. I'm guessing that the Windows namespace is ...
0
votes
1answer
45 views

Bind Images To RadMosaicTile

I am using RadMosaicTile in my windows store application. I want to bind images with it. I tried this RadMosaicHubTile tile = new RadMosaicHubTile(); tile.ImageSources.Add("Image1.jpg"); ...
2
votes
1answer
166 views

How to get LocalNetwork IP Address For WindowsStore Apps

I tried to get the IP Address of the Local Network. For this I googled and getting few samples, but those classes and methods are not supported to WindowsStore Apps, Here is one of my refered link ...
2
votes
3answers
566 views

Get the current thread id on Windows 8 with C#

System.Threading.Thread (with .CurrentThread.ThreadId etc) has been removed from WinRT. Is it possible to get a current thread id (for debugging and logging purposes?) in Windows 8?
7
votes
1answer
646 views

Where do I mark a lambda expression async?

I've got this code: private async void ContextMenuForGroupRightTapped(object sender, RightTappedRoutedEventArgs args) { CheckBox ckbx = null; if (sender is CheckBox) { ckbx = ...
0
votes
0answers
100 views

Imitate the same animation storyboard which uses windows store apps in WPF

I'd like to use in a WPF application the same animation storyboard when the page is loaded like Windows Store apps. I'm not an expert using Storyboard in Blend, but I can appreciate a traslation from ...
0
votes
2answers
521 views

Connecting Windows 8 App with Skydrive and Uploading File issue in c#

async private void uploadtosky_Click(object sender, RoutedEventArgs e) { try { LiveAuthClient auth = new LiveAuthClient(); LiveLoginResult log = await auth.LoginAsync(new ...
1
vote
1answer
121 views

Roamingfolder.CreateFileAsync how do I close the file

Using this code: private async void writeToStorage(string contents) { var roamingFolder = Windows.Storage.ApplicationData.Current.RoamingFolder; var storFile = await ...
0
votes
1answer
158 views

How are SQLite records updated?

This code's syntax is accepted: public async Task UpdateLocationAsync(SOs_Locations locations) { var db = new SQLiteAsyncConnection(SQLitePath); await db.UpdateAsync(locations); } ...but I ...
0
votes
1answer
249 views

Why does my comboBox not allow me to add values to it?

I have this WinRT XAML: <ComboBox x:Name="comboxGroupName" Grid.Row="1" Grid.Column="1" Grid.ColumnSpan="3" Margin="4" Width="200" Height="36" HorizontalAlignment="Left" ></ComboBox> ...
0
votes
1answer
194 views

WinRT Clear Clipboard background task

My app gives users the ability to clear a their clipboard after a certain time in seconds after copying some secure text. The problem is, if the app suspends, the clipboard never clears. I've looked ...
0
votes
1answer
97 views

How to reuse XAML code blocks without binding?

I have this XAML code block: <StackPanel Orientation="Horizontal"> <TextBlock Text="Hello " /> <TextBlock Text="World" /> </StackPanel> I would like ...
1
vote
1answer
303 views

File to Byte Array in WinJS

I'm tinkering with some Windows Store development in JavaScript and I seem to be stuck on how to get a byte array from a binary file. I've found a couple of examples online, but they all seem to only ...
0
votes
1answer
32 views

Why does my project continue to look for an obsolete subfolder?

I changed the name of a subfolder in my project from "SOs_Forms" to "SOs_Pages" Now, though, on noticing that several places in my project still referred to the old "SOs_Forms" I changed those to the ...
2
votes
1answer
59 views

Is there a way to get the CharmsBar Width?

I would like to resize some controls of my App when the CharmsBar (specially the SearchPane) opens. I have made some tests and the width is usually 343 but sometimes it is greater (it depends on the ...
0
votes
1answer
252 views

Explanation on Adding items to a ListBox in Windows RT

I am trying to make a simple Windows 8/RT app for the store and i have a question about adding items to a ListBox. In my MainPage i have this code: public sealed partial class MainPage : Page { ...
1
vote
1answer
217 views

How do you add a custom authorization header to a Windows Store App OData client?

I'm building a Windows Store App using the Windows Runtime. I'm accessing an OData service that uses Basic authentication. I'm using the WCF Data Services Tools for Windows Store Apps library ...
1
vote
2answers
205 views

Strangeness with DataContext and GridView / ListView

I have a Windows 8 store app based off of the grouped template project, with some renames etc. However, I'm having a hard time getting the ItemsSource databinding to work for both non-snapped and ...
0
votes
1answer
499 views

How can I Recursively Read Files and Folders using JavaScript

I've just started discovering Windows StoreApps (that's what Microsoft calls it) and I'm following the sample code here about using the FolderPicker. I want to Iterate through the folder and read all ...
2
votes
1answer
270 views

Windows Store App Incremental Serialization

So I finally got my listview content to serialize and write to a file so I can restore my apps state across different sessions. Now I'm wondering if there is a way I can incrementally serialize and ...
0
votes
0answers
36 views

Why does my WAMS query return the verbose name of its return type rather than a value from the table (should be null in this case)?

This query: public static async Task<List<string>> GetSenderDeviceIDForSenderIDAndReaderDeviceID(string senderID, string readerDeviceID) { ...
0
votes
3answers
995 views

How to read a text file line by line Windows RT?

i just cant find a clean explanation on how to read a text file, line by line in Windows RT ( for Windows 8 Store). Lets say i have a folder: MyFolder/Notes.txt And i want to read the data from ...
0
votes
2answers
266 views

Tile small image size guidelines?

Having read some of the guidelines for images, I am still unsure of the required sizes for the small image on tiles, such as in TileWideSmallImageAndText01 References: Tile and toast image sizes, ...
1
vote
1answer
156 views

How to enable both selection and item click in a Windows Store application

I have a ListView like this: <ListView SelectionMode="Single" IsItemClickEnabled="True" ItemsSource="..." ItemClick="listView_ItemClick"> ... </ListView> When this listview is ...
1
vote
1answer
297 views

Upload picture in Assets folder in windows store application

I am developing a windows store application, where I need to upload an image and save it in Assets folder. I am new in C#. Here is my code. var picker = new FileOpenPicker(); ...
3
votes
1answer
268 views

how to connect sql server 2008 R2 with windows store application

I am currently developing a windows store application, I need to connect my app with sql server 2008 R2 Db, some sql classes are not working in the WinRT API, please any one suggest me on this and ...
0
votes
1answer
120 views

Why is Encoding.ASCII class not available for Windows Store apps?

I'm using the Encoding.ASCII class in my WinForms app. Now I need to convert that into a Windows Store app. The problem is, the ASCII class is missing! using System.Text; Here is the assembly and ...

1 22 23 24 25 26 34