Windows phone 8 [ITSSNET] Sesiones.

Post on 05-Jul-2015

41 views 0 download

description

comunidad ITSSNET

transcript

30 Agosto 2014

Microsoft Confidential

3

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

6

7

8

9/21/2014 Microsoft Confidential 9

Visual Studio 2013

Microsoft Confidential

X AM L

<TextBlock />

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

<Grid> <TextBlock /> </Grid>

Microsoft Confidential

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>

9/21/2014 Microsoft Confidential 32