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.
0
votes
1answer
6 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
1answer
407 views
Grid is not supported in a Windows Presentation Foundation (WPF) project
I am learning how to create a Class Library (Windows Store apps) and used a UserControl template to add a user control to it.
Then I added a Grid tag to accompanying XAML. However, the tag is ...
0
votes
2answers
21 views
Styling Inner Elements in XAML Style
i have this code
<HyperlinkButton Style="{StaticResource HyperLink-Navi-Container}">
<HyperlinkButton.Content>
<TextBlock Text="Sample Text"></TextBlock>
...
0
votes
2answers
64 views
Increment string value in List
This is not much complicated. But I am wondering how to make it possible.
XmlAttribute ids3 = item.GetAttributeNode("href");
string hrefname = ids3.Value;
value1.Add(hrefname); ...
0
votes
0answers
5 views
How can I determine which items in a GridView that are visible in the current scroll window?
I have a GridView in my main app page and I want to do some background processing for the items that are currently in view for the user (high priority), and then of course do the other items too (low ...
0
votes
0answers
14 views
Bind Dynamic Data from an API to FlipView control
I've been trying to bind data from a json API call to the flipView with no luck. Here's the HTML code:
<body>
<!--Define the Template Here-->
<div ...
1
vote
0answers
15 views
Does Windows 8 Has The Ability To Read/Write NFC Tags?
I've tried downloading and deployed the Proximity Sample Code link. But i'm unable to do anything with regards to NFC.
Then i did a search on YouTube and found this. Is this even NFC? From what i ...
3
votes
1answer
25 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
0answers
14 views
How to embed a font into Windows Store app and to use it from WebView NavigateToString method?
I want to use a font in WebView of my Windows Store App.
I was referring to this page.
http://blogs.msdn.com/b/wsdevsol/archive/2012/10/23/about-webview-and-embedded-fonts.aspx
This page use ...
0
votes
1answer
22 views
Is it possible to create an Attached Property on a Sealed XAML control class?
The Run class in the Windows Store Apps libraries is SEALED, unlike the old desktop version. I need to add a property to it that I can retrieve when the user selects the Run.
Is it possible to attach ...
-1
votes
1answer
41 views
how to get Http Request from website by Windows App in C#
I send one Http Request for specific URL and want That URL send me feedback through a response. I know how to send a request but I don't know how I can get a response from that URL
thanks!
0
votes
1answer
16 views
capturing windows store app traffic with fiddler raises an exception
I've attempted to send a POST request on a Windows Store App. And I've attempted to use Fiddler or Charles to capture it.
with Fiddler/Charles closed, everything works fine.
with Fiddler/Charles ...
0
votes
1answer
28 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
4 views
Is there any API to get the possible values accepted by VideoDeviceController.GetDeviceProperty on a Windows Store App?
Is there any API to get the possible values accepted by VideoDeviceController.GetDeviceProperty on a Windows Store App?
0
votes
1answer
6 views
Pushpin Address Balloon on Bing Maps in Windows Store Application
I want to show address of the location with pushpin on Bing Map. I was able to add pushpin image on desired location. I want to know that how can I show address of the location in balloon kind of ...
0
votes
1answer
28 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 ...
3
votes
2answers
3k views
Unit Tests Not Appearing
I'm using Visual Studio Express 2012 on the Windows 8 Release Preview and I can't seem to get my unit tests to appear in the test explorer.
I have a class called TestApp.Entity, and ...
0
votes
1answer
24 views
Is it possible to connect a Win RT app with PC via Bluetooth?
I am trying to find a sample that connect a Win RT app with other Bluetooth devices for example a PC. It is a basic thing but seems like it is not supported in WinRT.
In one thread a Microsoft ...
0
votes
0answers
31 views
Need to disable Ui when popup is open
In my Windows Store app (c#) i have Popup:
<Popup x:Name="LoginPopup" HorizontalAlignment="Center" VerticalAlignment="Center" Width="400" Height="300" IsOpen="{Binding Path=LoginPopupIsOpen}">
...
0
votes
1answer
11 views
Add image for Slider thumb in xaml
I would like to add image for thumb of xaml slider control in windows store app,
How to add,is it possible in windows store app?
1
vote
3answers
53 views
How do i convert a JSON string to a native C# array?
I am trying to make a windows 8 Store app that gets results from a MySQL database from a PHP page as a REST service.
I'm looking for the PHP to return a JSON representation of an array of strings and ...
0
votes
1answer
15 views
Smooth polyline when draw windows store apps
I am drawing canvas by using polyline. Add point polyline when i move pointer and draw canvas. I want polyline smooth, can you help me algorithm.
1
vote
0answers
85 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
0answers
27 views
Replace element in GridView on element's event
I'm using a highly dynamic GridView inside my Windows Store App. Element's inside the GridView can have different template and size, depending on what I'm inserting inside DataSource. For instance:
...
0
votes
0answers
23 views
Appending child node to IXMLNode
I am trying to add nodes to the original xml tile to make queue tilexml is the original tile and tiledata is xmldocument to get another template xml and change it and then put it to the original tile.
...
0
votes
0answers
11 views
Deactivate Telerik's diagram animations when the page is shown
Per default, Windows Store apps show a little animation when a new page is shown: The page moves a little to the left. (What's this kind of animation called?)
Telerik diagrams for Windows 8 do ...
2
votes
2answers
187 views
Windows Store App Development - InvalidateRequerySuggested
in regular WPF projects I've used
CommandManager.InvalidateRequerySuggested();
in order to force a value converter to be executed again.
Now, in Windows Store App development this handy command is ...
1
vote
4answers
60 views
Ref in async Task
How I can to pass a reference as a parameter to Async method in Windows Store App ? I'm looking for something like this:
var a = DoThis(ref obj.value);
public async Task DoThis(ref int value)
{
...
0
votes
0answers
73 views
Google Map in Windows Store Application
I want to use Google Map in my Windows Store Application. I found this article. http://www.creepyed.com/2012/11/how-to-use-the-google-maps-api-on-windows-8. But it is in javascript, I am not a ...
2
votes
1answer
25 views
Show view from non-view/viewmodel in mvvmcross
What is the correct way to open a View in mvvmcross from a non-view? From within a viewmodel we would use ShowViewModel<>(..).
Specifically we are responding to a push notification opening the app ...
-1
votes
3answers
57 views
Get element values from XML in C#
This is my XML data from file
<item id="ncx" href="toc.ncx" media-type="application/x-dtbncx+xml" />
<item id="W000Title" href="000Title.html" media-type="application/xhtml+xml" />
...
1
vote
2answers
27 views
The best way load files from Isolated Storage
In my Windows Store App I save/use files (almost images) in Isolated Storage. When I need to present image i use following:
var file = await folder.GetFileAsync(fileName);
using (var stream = await ...
0
votes
1answer
26 views
How to catch exceptions which occur inside asynchronous methods? (Windows Store app, PPL)
I am trying to catch exception from OnlineIdAuthenticator::AuthenticateUserAsync method, which occurs when there is no internet connection for example.
I've found some info about this topic, but it ...
0
votes
0answers
23 views
WIndows App Store Semantic Zoom Issue
I have implemented a semantic zoom in my metro W8 app and it works fine except that in the ZoomedIn view I only get a max of 27 items in each group. The first group correctly has 27 items in the ...
0
votes
1answer
14 views
Add attributes to IXmlNode
In windows app store they changed the XmlNode to IXmlNode !!! , I tried to add attribute to the node by the normal way but I failed they removed Attributes.Append(---).
Is there any solution to ...
0
votes
2answers
38 views
How to get the Domain of Current User programmatically in Store Apps
We developed an store app it works fine when we deployed in domain2 it not working.As it throwing an error we fixed that error in the domain2 and installed in the domain1 it doesn't work but it ...
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 ...
-3
votes
0answers
13 views
Samsung Tablet for Windows 8 Development [closed]
I am new in Windows Store Application development, I want to buy a device to test my app. can anyone tell that which is the best Samsung Windows 8 surface device for development?
0
votes
0answers
32 views
Sending a string from Windows store app to a WCF
I have got a Windows Store App, and within this Store app I have a textbox wich the user types in information wich then gets sent to my WCF service.
Now here is the problem. When the user types in ...
0
votes
0answers
46 views
XML parsing in windows 8
My XMl data look like this, I am getting this from my local folder
<First>
<item id="ncx" href="toc.ncx" media-type="application/x-dtbncx+xml" />
<item id="xxxx" ...
0
votes
1answer
30 views
HTML parsing with HtmlAgilityPack in Windows Store App
i'm parsing HTML code to get Image Link in a "Windows Store Application"
i'm Using Html Agility Pack !
Here The Code :
async void LoidContent()
{
foreach (var feedItem in ...
0
votes
1answer
32 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
16 views
Accessing a WCF service in a Windows Store App hangs
I've started work on a Windows 8 store app that needs to communicate with a WCF service running as a Windows Service on a Windows 7 server. The binding is net.tcp, with no security (yet). I've also ...
1
vote
1answer
19 views
Set TabIndex to TextBlock
I'm developing Windows Store application, using C# + XAML.
I have a textblock, used as activation button for HeaderMenu with a chevron character inside it and Tap event binded. How can I activate it ...
-1
votes
1answer
22 views
WP7 maximum application name length
I have to prepare names for application in different languages, the problem is sometimes name is too long and we cant find maximum length. Name of application visible on market is taken from xap file, ...
0
votes
1answer
28 views
Modeless dialog box in App store
In C#, how can I show modeless dialog box for a App store application?
My app has multiple views and a long time task. I would like to show the task progress in a modeless box at the top-right ...
1
vote
1answer
39 views
MvvmCross: Application wide view model?
I am loving MvvmCross so far, but I am new to the MVVM technique. MVVM seems to center around the View and ViewModel and navigating between them. However, what about application-wide model items? ...
1
vote
2answers
294 views
storagefile::ReadAsync exception in c++/cx?
I have been trying to use c++/cx StorageFile::ReadAsync() to read a file in a store-apps, but it always return an invalid params exception no matter what
// "file" are returned from FileOpenPicker
...
0
votes
1answer
28 views
C++/CX way of iterating Map<String^, Object^>^?
I have a object of type of Map<String^, Object^>^. How do I iterate in C++/CX way? I am trying to use iterator but I am not clear about syntax. Documentation doesn't provide an example.
0
votes
1answer
208 views
Unknown exception in Windows_UI_Xaml!DirectUI::Application::OnLaunchedProtected
Store certification testing is reporting that my app crashes on startup. I have not been able to reproduce the error on my desktop pc or Surface RT so far. The app does implement search contract. ...









