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
0answers
12 views
SQLite Database Insert Error Constraint
I am making a web service call that returns a message bean that has 50 packets. I then put it into my SQLite the following way
public void DashboardHandler(Array Bean, long cNum)
{
...
0
votes
0answers
8 views
SQLITE - Using with methodes under Windows Store Apps
Hello,
I want use sqlite commands with methodes:
My DatabaseFuncs.cs -class:
....
public static async Task<List<_table>> GetDatabase( ...
0
votes
0answers
7 views
SemanticZoom - How do I keep two ListView controls in selection synch?
Using a SemanticZoom control in an MVVM project, I have two ListView controls with custom styles and panels, etc. so they display horizontally, there is no grouping or need for it.
I bind both to a ...
0
votes
2answers
11 views
CollectionViewSource “Value does not fall within the expected range.”
Why does this code produce the error in a Windows 8 XAML application?
Value does not fall within the expected range.
The XAML:
<SemanticZoom>
<SemanticZoom.ZoomedInView>
...
0
votes
0answers
10 views
Windows Store - Everything runs on 'Worker Thread'
Very simple question: why does a button click and even work scheduled via Dispatcher.RunAsync execute on a thread named 'Worker Thread'?
Is this actually just the UI thread but someone forgot to name ...
0
votes
2answers
18 views
Web Service Call Loop/Not Finishing
For my app I make calls to a web service to get customer data. The problem I am encountering is when I make this particular call it gets the the asynchronous await call and loops back without ...
0
votes
0answers
14 views
Windows Store App: Uneven UI with grouped GridView
First of all, I'm very new to Windows 8 and developing Windows store apps.
I'm trying to add a GridView control to my current app but am having some problems with the way it looks:
As you can see ...
0
votes
0answers
6 views
ApplicationContext in windows store app?
How can i get ApplicationCotext in windows store application? In windows Form we get it in System.Windows.Forms.ApplicationContext but not able to find it for Store application.
0
votes
1answer
8 views
Windows 8 - ListView using Horizontal items panel doesn't scroll
I have a ListView and I've simply replaced the ItemsPanel template with a StackPanel that's in horizontal mode, like so:
<ListView.ItemsPanel>
<ItemsPanelTemplate>
...
0
votes
0answers
4 views
Getting error with SDK on Visual Studio 2012
I am trying to make a windows 8 application using Visual Studio 2012. Its an RSS reader and i am using Split App - Javascript template. When i build the app i am getting this warning :
Warning : ...
0
votes
1answer
12 views
How deserialize Byte array to object - Windows 8 / WP 8
Hi I use code below to convert object to byte array now I need this byte array convert back to object. Does any one know how to deserialize this in windows 8 app? I find some code but use Serialize ...
0
votes
1answer
19 views
Returning a value from Dispatcher.RunAsync() to background thread
I'm using Dispatcher.RunAsync() to show a MessageDialog from a background thread. But I'm having trouble figuring out how to get a result returned.
My code:
bool response = false;
...
0
votes
2answers
43 views
MVVM sharing code Win8 and WP8 and file access
I am working on small project, where I would like to learn about code sharing methods.
This solution include both Win8 and WP8 projects.
I need to load data from XML files which are stored in the ...
0
votes
1answer
15 views
What is the property CoreDispatcher.HasThreadAccess used for?
I am new to working with Windows and I am trying to understand the APIs. Windows Runtime API provides the property CoreDispatcher.HasThreadAccess, but the description in the docs of what it is is very ...
0
votes
0answers
15 views
MapPolyline locations binding - Windows Store App
I've got a problem with binding my LocationCollection to MapPolyline locations property.
This is fragment of my XAML code:
<bm:Map x:Name="map" Credentials="MY_KEY" Grid.Column="1">
...