Azure With Windows Store App Development

Preview:

DESCRIPTION

Microsoft Azure integrate With Windows Store App

Citation preview

MICROSOFT AZURE & WINDOWS STORE APP DEVELOPMENT

14/8/2014 Prepared by Cheah Eng Soon

AGENDA

Create a Storage Account

Create a Mobile Services

Integrate Microsoft Azure With Windows Store App

14/8/2014 Prepared by Cheah Eng Soon

CREATE STORAGE ACCOUNT

14/8/2014 Prepared by Cheah Eng Soon

MANAGEMENT PORTAL

http://manage.windowsazure.com

14/8/2014 Prepared by Cheah Eng Soon

CREATE A STORAGE ACCOUNT

14/8/2014 Prepared by Cheah Eng Soon

14/8/2014 Prepared by Cheah Eng Soon

14/8/2014 Prepared by Cheah Eng Soon

CONFIGURATION OF MOBILE SERVICES

14/8/2014 Prepared by Cheah Eng Soon

CREATE MOBILE SERVICE

14/8/2014 Prepared by Cheah Eng Soon

14/8/2014 Prepared by Cheah Eng Soon

14/8/2014 Prepared by Cheah Eng Soon

14/8/2014 Prepared by Cheah Eng Soon

14/8/2014 Prepared by Cheah Eng Soon

Data Create New Table “shortmessage”

14/8/2014 Prepared by Cheah Eng Soon

14/8/2014 Prepared by Cheah Eng Soon

DOWNLOAD

Go To

http://bit.ly/MSPAzureWorkshop

Download the File “Server side script”

14/8/2014 Prepared by Cheah Eng Soon

14/8/2014 Prepared by Cheah Eng Soon

14/8/2014 Prepared by Cheah Eng Soon

INTEGRATE AZURE WITH WINDOWS STORE APP

14/8/2014 Prepared by Cheah Eng Soon

14/8/2014 Prepared by Cheah Eng Soon

ADD IN APP.XAML

14/8/2014 Prepared by Cheah Eng Soon

MAINPAGE.XAML

14/8/2014 Prepared by Cheah Eng Soon

LISTVIEW “LVWNEWMESSAGES”

<ListView x:Name="lvwNewMessages" HorizontalAlignment="Left" Height="539" Margin="154,249,0,-20" VerticalAlignment="Top" Width="601">

<ListView.ItemTemplate>

<DataTemplate>

<StackPanel>

<TextBlock Style="{StaticResource BasicTextStyle}" >

<Run Text="Name:" FontWeight="Bold"/>

<Run Text="{Binding Name}"/>

</TextBlock>

<TextBlock Style="{StaticResource BasicTextStyle}" >

<Run Text="Message:" FontWeight="Bold"/>

<Run Text="{Binding Message}"/>

</TextBlock>

</StackPanel>

</DataTemplate>

</ListView.ItemTemplate>

</ListView>14/8/2014 Prepared by Cheah Eng Soon

APPBAR

<Page.BottomAppBar>

<AppBar Name="appbtnDelete">

<StackPanel Orientation="Horizontal">

<Button Click="appbtnDelete_Click" Style="{StaticResourceDeleteAppBarButtonStyle}" HorizontalAlignment="Right"/>

<Button Click="appbtnUpdate_Click" Style="{StaticResourceYesAppBarButtonStyle}" HorizontalAlignment="Right"/>

</StackPanel>

</AppBar>

</Page.BottomAppBar>

14/8/2014 Prepared by Cheah Eng Soon

DOWNLOAD

http://1drv.ms/1pFhu1f

For MainPage.cs Function Purpose

14/8/2014 Prepared by Cheah Eng Soon

RESOURCES

MVA

http://www.microsoftvirtualacademy.com/training-topics/cloud-development

Contacts

Cheah Eng Soon

cheahengsoon@live.com.my

Blog: cheahengsoon.weebly.com

14/8/2014 Prepared by Cheah Eng Soon

Recommended