-->

Thursday, April 9, 2015

Getting Started with Grid App in Windows Store App

Introduction In the preceding example, we saw getting started with windows store app. Today we will Getting started with grid app. Create a new Grid app project under visual studio 2013 and run this application without any change...

How to use Style property in windows store app

Step-1 :  Double-click MainPage.xaml in Solution Explorer to open it. Step-2 :  In XAML or design view, add a TextBlock with some Text like " Greeting". Step-3 :  In the Properties Window, Expand the Miscellaneous group and find t...

Wednesday, April 8, 2015

How to change style, theme of page in windows store

If you want to change your page theme, use RequestTheme property  in App.Xaml file. Basically theme is designed for better look. Bydefault, our windows store app uses dark theme. The System resource also included a light theme. ...

How to modify the start page in windows store app

In this tutorial, you learn how to Before you start Create a new project. Before you start... To complete this tutorial, you need Windows 8.1 and Visual Studio 2013. To download them You also need a developer license. For in...

Use of CheckBox Control in windows store app

Desing Page <Page     x:Class="App1.checkBox"     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"     xmlns:local="using:App1"     xmlns:d="http://sche...

Tuesday, April 7, 2015

Bind Image in code file, Windows Store App

Design Page <Page     x:Class="App1.ImageCode"     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"     xmlns:local="using:App1"     xmlns:d="http://sch...

Use Of Image Control in windows Store App

<Page     x:Class="App1.imagecontro"     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"     xmlns:local="using:App1"     xmlns:d="http://schemas.micros...

Monday, April 6, 2015

Example of Hyperlink control in windows store app Tutorial

How to Navigate from page to specific URL  Add HyperlinkButton control with specified code , code is <Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">         <HyperlinkButton FontSize=" 30" Content...

Windows Store: Hello World !

In this tutorial, you learn how to Before you start Create a new project Hello World Output Before you start... To complete this tutorial, you need Windows 8.1 and Visual Studio 2013. To download them You also need a develope...

Thursday, November 21, 2013

Windows Store App : How to use Grid in XAML

Introduction By-default a Grid element has one row and one column i.e. a single cell, any control placed inside the Grid will be placed in this cell. Lets see the below simple XAML code where a textbox is placed in the first row...

Tuesday, November 19, 2013

How to change Application name in Windows Store Grid App

Introduction In our previous article, we have studied about Windows Store Grid App. In this article we will learn about App.xaml file and their behaviors also take a simple example to change Application name. Pre-requisite You...
© Copyright 2013 Computer Programming | All Right Reserved