By tag: windows8
0
kicks
Get access to the %ProgramFiles%\WindowsApps folder and view apps
One of my preferred ways to learn new things is to read source code written by other people. Specifically on Windows 8 Windows Store apps, I like to understand how some apps were developed, which APIs or libraries were used, and even how some page layouts were designed.
0
kicks
Useful links for Windows 8 developers
Here is a very good compilation of links that Tiago Andrade e Silva shared with me today, which developers creating Windows Store apps for Windows 8 will find very useful.
0
kicks
Request user to switch to Desktop version of Internet Explorer
In Windows 8 we have two versions of the Internet Explorer, the well-known “Desktop” version, and the new “Windows Store” version, which can render everything that the “Desktop” version can, but does not support any kind of plugins like Flash, Silverlight, or Java Applets for example.
0
kicks
Navigation design for Windows Store apps and other Windows 8 design re
An article discussing Microsoft's strategies to gain developer interests in Windows 8 App Store Development.
0
kicks
Getting started with Bing Maps SDK for Windows Store apps
This is an introductory post that is meant to investigate basic functionality provided in Bing Maps components for C#/XAML Windows Store apps.
Topics covered include: using Bing Maps SDK for Windows Store apps in Visual Studio 2012 projects, zooming and centering map on user’s current location usi...
0
kicks
Downloading files in Windows 8 apps using Background Transfer feature
In this blog post I am going to show how to use Background Transfer feature to download files over HTTP in a Windows Store C#/XAML app. Background Transfer has several advantages over using HttpClient and is much better for long running transfers. I am going to create a simple app, that initiates do...
0
kicks
Using OAuth 2 in WinRT using C#: it has never been easier before
WinRT has a built-in authentication client that can be used to authenticate users through Facebook, Twitter, Flickr, Google, etc. This post covers the process of authenticating users with Google.
0
kicks
Create an Asynchronous findControl function in WinRT javascript
create an asynchronous javascript function in WinRT javascript
0
kicks
Create an Asynchronous findControl function in WinRT javascript
findControlAsync in WinRT javascript
0
kicks
Create windows 8 shutdown logoff and restart using C#
How to use C# and to create power short cuts in windows 8
0
kicks
Windows 8 Metro: Enforce fluidness with animations and transitions
From the developer point of view animations are usually something of hard, just because they bring almost an additional “dimension” to the screens that is the time. Dealing with animations in a classic desktop application is almost impossible but also in a WPF or Silverlight application it may be ca...
0
kicks
Consuming ASP.NET Web API services in Windows 8 C# XAML apps
In this blog post I show how to set up a basic CRUD ASP.NET Web API REST like service and how to consume that service from a C# Windows XAML 8 app (‘modern style’ that is). I lso show how to build a simple user interface in XAML powered by data retrieved from our service and how to leverage MVVM pat...
0
kicks
Developing Windows 8 - When your main thread is not your UI thread
This post uses the Visual Studio debugger to demonstrate that learning proper asynchronous programming is no longer an option. In Windows 8, your main thread is not always your UI thread as it is in Windows Forms and WPF.
0
kicks
JSON Data in Windows 8 Application
Lets explore the JSON Data consumtion example in Windows 8 application using the Flickr JSON API.
There is no WebClient class in new API, but we can make use of the HttpClient class that works in a similar way. We can also provide an asynchronous method to fetch the data.