Top Banner
MICROSOFT AZURE & WINDOWS STORE APP DEVELOPMENT 14/8/2014 Prepared by Cheah Eng Soon
26

Azure With Windows Store App Development

Nov 22, 2014

Download

Technology

Eng Soon Cheah

Microsoft Azure integrate With Windows Store App
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Azure With Windows Store App Development

MICROSOFT AZURE & WINDOWS STORE APP DEVELOPMENT

14/8/2014 Prepared by Cheah Eng Soon

Page 2: Azure With Windows Store App Development

AGENDA

Create a Storage Account

Create a Mobile Services

Integrate Microsoft Azure With Windows Store App

14/8/2014 Prepared by Cheah Eng Soon

Page 3: Azure With Windows Store App Development

CREATE STORAGE ACCOUNT

14/8/2014 Prepared by Cheah Eng Soon

Page 4: Azure With Windows Store App Development

MANAGEMENT PORTAL

http://manage.windowsazure.com

14/8/2014 Prepared by Cheah Eng Soon

Page 5: Azure With Windows Store App Development

CREATE A STORAGE ACCOUNT

14/8/2014 Prepared by Cheah Eng Soon

Page 6: Azure With Windows Store App Development

14/8/2014 Prepared by Cheah Eng Soon

Page 7: Azure With Windows Store App Development

14/8/2014 Prepared by Cheah Eng Soon

Page 8: Azure With Windows Store App Development

CONFIGURATION OF MOBILE SERVICES

14/8/2014 Prepared by Cheah Eng Soon

Page 9: Azure With Windows Store App Development

CREATE MOBILE SERVICE

14/8/2014 Prepared by Cheah Eng Soon

Page 10: Azure With Windows Store App Development

14/8/2014 Prepared by Cheah Eng Soon

Page 11: Azure With Windows Store App Development

14/8/2014 Prepared by Cheah Eng Soon

Page 12: Azure With Windows Store App Development

14/8/2014 Prepared by Cheah Eng Soon

Page 13: Azure With Windows Store App Development

14/8/2014 Prepared by Cheah Eng Soon

Page 14: Azure With Windows Store App Development

Data Create New Table “shortmessage”

14/8/2014 Prepared by Cheah Eng Soon

Page 15: Azure With Windows Store App Development

14/8/2014 Prepared by Cheah Eng Soon

Page 16: Azure With Windows Store App Development

DOWNLOAD

Go To

http://bit.ly/MSPAzureWorkshop

Download the File “Server side script”

14/8/2014 Prepared by Cheah Eng Soon

Page 17: Azure With Windows Store App Development

14/8/2014 Prepared by Cheah Eng Soon

Page 18: Azure With Windows Store App Development

14/8/2014 Prepared by Cheah Eng Soon

Page 19: Azure With Windows Store App Development

INTEGRATE AZURE WITH WINDOWS STORE APP

14/8/2014 Prepared by Cheah Eng Soon

Page 20: Azure With Windows Store App Development

14/8/2014 Prepared by Cheah Eng Soon

Page 21: Azure With Windows Store App Development

ADD IN APP.XAML

14/8/2014 Prepared by Cheah Eng Soon

Page 22: Azure With Windows Store App Development

MAINPAGE.XAML

14/8/2014 Prepared by Cheah Eng Soon

Page 23: Azure With Windows Store App Development

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

Page 24: Azure With Windows Store App Development

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

Page 25: Azure With Windows Store App Development

DOWNLOAD

http://1drv.ms/1pFhu1f

For MainPage.cs Function Purpose

14/8/2014 Prepared by Cheah Eng Soon

Page 26: Azure With Windows Store App Development

RESOURCES

MVA

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

Contacts

Cheah Eng Soon

[email protected]

Blog: cheahengsoon.weebly.com

14/8/2014 Prepared by Cheah Eng Soon