如果你已经成功安装了WPF的开发环境,那么你现在可以体验它的很多激动人心的功能了,WPF是基于XML的,所以如果你对XML很熟悉,又或者你以前是ASP.NET程序员,那么你一定会对这里用到的编程方法感到熟悉的.
下面让我们来写一个最简单的程序吧.
在xaml文件中添加如下代码:
<!--注意这里的两个xmlns是必须的-->
<Window x:Class="Wellcome" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="WellCome" Height="300" Width="300"
>
<!--这里定义一个Grid,实际没用到,不过它是布局的很好的工具啊-->
<Grid Background="GreenYellow">
<!--定义一个TextBlock来显示我们的信息-->
<TextBlock Text="Hello WPF " Background="Blue" TextBlock.Foreground=
"White" Width="300" TextAlignment="Center" Opacity="0.4">
</TextBlock>
</Grid>
</Window>
<Window x:Class="Wellcome" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="WellCome" Height="300" Width="300"
>
<!--这里定义一个Grid,实际没用到,不过它是布局的很好的工具啊-->
<Grid Background="GreenYellow">
<!--定义一个TextBlock来显示我们的信息-->
<TextBlock Text="Hello WPF " Background="Blue" TextBlock.Foreground=
"White" Width="300" TextAlignment="Center" Opacity="0.4">
</TextBlock>
</Grid>
</Window>
程序运行后的结果类似下面:
十分简单吧,确实以后要想做Vista风格的程序,没有这个就太麻烦了.