Tagged Questions
0
votes
1answer
65 views
XAML-Twitter Client. Get all Tweets from User
I will start out by saying I am new to building Windows 8 Applications. I recently downloaded the following XAML-Twitter Client Example:
...
0
votes
1answer
35 views
XAML: Grid Cell Overflow
I am trying to figure out a way that I can layout some text in a Grid, and have the contents of each cell overflow their borders. However it seems that I can't get this to happen, and I was hoping ...
1
vote
1answer
37 views
using Nito AsyncEx/AsyncInLine to lead with async filePicker
I'm new at async world and i started developing some stuff for windows store apps.
My problem is that i need to wait the async method of filepicker ends to do other stuff.
So i tried search for: "run ...
0
votes
2answers
139 views
List<> .ForEach not found [duplicate]
I am porting a Windows Phone app to Win 8, and I have found this stumbling block, but cant find the solution.
I have a:
List<items> tempItems = new List<items>();
and
...
4
votes
3answers
417 views
Is EntityFramework available for Windows 8 Store Apps?
Is EntityFramework available for Windows 8 Store Apps?
I'm using Visual Studio 2012 Express for Windows 8.
I'm starting to wonder because I can't make it work.
I installed the Entity Framework ...
0
votes
1answer
143 views
Create sub folders in My Pictures from Windows Store application
I'm trying to create a folder structure within My Pictures folder from a Windows store app. But I can't seem to get pass the first level.
I create my first level folder using the following code:
...
0
votes
1answer
116 views
Reflection issue in WinRT
I am having an issue porting a WP7 app to a win8 store app...
I run this code to populate fields from elements inside XML file:
Venue lv = new Venue();
foreach (var t in Fields)
...
0
votes
2answers
460 views
A Simple Photo Album with Pinch and Zoom using FlipView
I'm trying to create a simple photo album (Windows Store App) using Flip View.
I have the Image element embedded within a ScrollViewer. I'm able to browse through the photos, but I'm looking to do ...
3
votes
1answer
111 views
How can I define primitives in StandardStyles.xaml
I want to define double values so that I can reuse it in many UIElements
<Double x:Key="MyWidth">100</Double>
<String x:Key="MyString">This is my text</String>
It's giving ...
0
votes
1answer
134 views
Can C# Winstore app access email app?
I want specifically to be able to search through emails stored on the local device using C# Winstore (Metro) app.
Consider an application which need to find if a certain text is present in the emails ...
4
votes
4answers
707 views
How can I start a Windows App Background Task immediately after registering it?
I am writing a Metro App that will only run on PCs (so there is no, or at least less, worry about the battery life). I need it to register and run a background task when the user clicks a button. It ...
1
vote
0answers
148 views
Password hashing in Windows store app
I am writing an authentication Service for my app. Clients will connect via HTTP to this Authentication service to register or connect. After they have connected, they will receive a sessionkey, that ...
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 ...
0
votes
3answers
312 views
How do I read a binary file in a Windows Store app?
How can I read a binary file in a Windows Store app, or more specifically how can I create my Stream, when the System.IO namespace contains no File class?
The documentation examples for BinaryReader ...
1
vote
1answer
111 views
Implement Logger class in Metro apps
Hi I want to implement the Logger class so that I can log messages in the log file(a text file).
I'm able to log these messages to a file but I need some more description like which method has called ...
0
votes
2answers
774 views
How do you style WebView control in Windows Store App?
I have C# / XAML win store app which receives various data from json. one piece of it - html string.
I display that string using WebView.NavigateToString
However I don't see how can I style it. ...
0
votes
1answer
102 views
What is the .NET 4.5 Windows Store App equivalent of AsyncOperationManager?
Currently digging into developing a Windows Store App for my new Surface device, I am trying to port a small application from .NET 2.0 WinForms.
I am using the AsyncOperationManager class to ...
1
vote
1answer
315 views
Detect WIFI connection in Windows Store App
I need to detect if the device my app is running on is currently connected to a WIFI network. I have read the guidance I know i can determine the "connection cost" but i specifically want to know if ...
16
votes
3answers
1k views
Is it possible to await an event instead of another async method?
In my C#/XAML metro app, there's a button which kicks off a long-running process. So, as recommended, I'm using async/await to make sure the UI thread doesn't get blocked:
private async void ...
0
votes
1answer
270 views
Manual SOAP Serialization in Windows Store Apps
This is a continuation of my previous question regarding the Expect100Continue Header not being able to be removed in Windows Store apps, for reference: ServicePoint.Expect100Continue for Windows ...