您好,登錄后才能下訂單哦!
裝了Windows8 Consumer Preview和Visual Studio 2011 Beta,體驗(yàn)一把Metro風(fēng)格應(yīng)用開發(fā),先寫個HelloWorld試試。
Metro Style App支持多種開發(fā)方式,包括:
☆ XAML/C# 或 XAML/VB.Net
☆ HTML/JS
☆ XAML/C++
☆ DirectX/C++
也可以把幾種技術(shù)混合起來進(jìn)行開發(fā),我用XAML/C#先試一下。
1、建工程
在Win8環(huán)境下,建工程時能看到有Windows Metro style,這個選項(xiàng)在非Win8的環(huán)境下是看不到的。建個Blank Application吧,這個最簡單。
2、寫界面XAML(BlankPage.xaml)
只放兩個TextBlock,顯示文本信息用。
<Page x:Class="HelloWorld.BlankPage" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="using:HelloWorld" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d"> <Grid Background="{StaticResource ApplicationPageBackgroundBrush}"> <StackPanel> <!--在界面上放兩個TextBlock,一個顯示Hello World,一個顯示時間--> <TextBlock FontSize="60" HorizontalAlignment="Center" Margin="0,200,0,0">Hello World!</TextBlock> <TextBlock Name="txtCurrentTime" FontSize="48" HorizontalAlignment="Center" Margin="0,50,0,0"></TextBlock> </StackPanel> </Grid> </Page>
3、寫代碼(BlankPage.xaml.cs)
在OnNavigatedTo方法中寫幾行代碼,讓界面上第二個TextBlock顯示當(dāng)前時間。
protected override void OnNavigatedTo(NavigationEventArgs e) { //建個定時器,每秒更新一下txtCurrentTime的Text為當(dāng)前時間 var timer = new DispatcherTimer(); timer.Interval = TimeSpan.FromSeconds(1); timer.Tick += (sender, args) => { txtCurrentTime.Text = DateTime.Now.ToString(); }; timer.Start(); }
OK了,Ctrl+F5跑一下,效果如下:
PS:在Win8上開發(fā)Metro應(yīng)用,需要先注冊一個開發(fā)者許可。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。