+ All Categories
Home > Mobile > Windows phone 8 [ITSSNET] Sesiones.

Windows phone 8 [ITSSNET] Sesiones.

Date post: 05-Jul-2015
Category:
Upload: jaime-ar
View: 41 times
Download: 0 times
Share this document with a friend
Description:
comunidad ITSSNET
35
30 Agosto 2014
Transcript
Page 1: Windows phone 8 [ITSSNET] Sesiones.

30 Agosto 2014

Page 2: Windows phone 8 [ITSSNET] Sesiones.

Microsoft Confidential

Page 3: Windows phone 8 [ITSSNET] Sesiones.

3

Page 5: Windows phone 8 [ITSSNET] Sesiones.

Decrease HW cost floor (support 8x26, Qualcomm Reference Design)

Dual-SIM support

Apps to help you get more out of your data plan: DataSense 2.0, Wi-Fi Sense, Storage Sense, Battery Sense

5

Page 6: Windows phone 8 [ITSSNET] Sesiones.

6

Page 7: Windows phone 8 [ITSSNET] Sesiones.

7

Page 8: Windows phone 8 [ITSSNET] Sesiones.

8

Page 9: Windows phone 8 [ITSSNET] Sesiones.

9/21/2014 Microsoft Confidential 9

Page 10: Windows phone 8 [ITSSNET] Sesiones.

Visual Studio 2013

Microsoft Confidential

Page 11: Windows phone 8 [ITSSNET] Sesiones.
Page 12: Windows phone 8 [ITSSNET] Sesiones.
Page 13: Windows phone 8 [ITSSNET] Sesiones.
Page 14: Windows phone 8 [ITSSNET] Sesiones.
Page 15: Windows phone 8 [ITSSNET] Sesiones.

X AM L

Page 16: Windows phone 8 [ITSSNET] Sesiones.
Page 17: Windows phone 8 [ITSSNET] Sesiones.

<TextBlock />

<TextBlock Name=“lblName” Width=“100” Height=“50”/>

<Grid> <TextBlock /> </Grid>

Page 18: Windows phone 8 [ITSSNET] Sesiones.
Page 19: Windows phone 8 [ITSSNET] Sesiones.
Page 20: Windows phone 8 [ITSSNET] Sesiones.
Page 21: Windows phone 8 [ITSSNET] Sesiones.
Page 22: Windows phone 8 [ITSSNET] Sesiones.
Page 23: Windows phone 8 [ITSSNET] Sesiones.
Page 24: Windows phone 8 [ITSSNET] Sesiones.

Microsoft Confidential

Page 25: Windows phone 8 [ITSSNET] Sesiones.

9/21/2014 Microsoft Confidential 25

this.Loaded += (s, a) =>

{

var canvas = new Canvas()

{

Width = 300,

Height = 300,

Background = new SolidColorBrush(Colors.Black)

};

var button = new Button()

{

Width = 200,

Height = 100,

Content = "Nuevo Boton"

};

canvas.Children.Add(button);

Canvas.SetLeft(button, 100);

Canvas.SetTop(button, 100);

this.Content = canvas;

};

<Canvas Background="Black"

Width="300"

Height="300">

<Button Width="200"

Height="100"

Content="Nuevo Boton"

Canvas.Left="100"

Canvas.Top="100"/>

</Canvas>

Page 26: Windows phone 8 [ITSSNET] Sesiones.
Page 27: Windows phone 8 [ITSSNET] Sesiones.
Page 28: Windows phone 8 [ITSSNET] Sesiones.
Page 29: Windows phone 8 [ITSSNET] Sesiones.
Page 30: Windows phone 8 [ITSSNET] Sesiones.
Page 31: Windows phone 8 [ITSSNET] Sesiones.
Page 32: Windows phone 8 [ITSSNET] Sesiones.

9/21/2014 Microsoft Confidential 32

Page 33: Windows phone 8 [ITSSNET] Sesiones.
Page 34: Windows phone 8 [ITSSNET] Sesiones.
Page 35: Windows phone 8 [ITSSNET] Sesiones.

Recommended