Hello World 應用程式
在 Visual Studio 中建立和執行新的 WPF 專案:
- 單擊檔案→新建→專案
- 單擊模板→Visual C#→Windows→WPF 應用程式選擇模板,然後按 OK :
- 在解決方案資源管理器中開啟 MainWindow.xaml 檔案 (如果沒有看到解決方案資源管理器視窗,請單擊檢視→解決方案資源管理器開啟它 ): ** ** ****
- 在 XAML 部分(預設情況下在“ 設計” 部分下面 )新增此程式碼
<TextBlock>Hello world!</TextBlock>
裡面 Grid
標籤:
程式碼應如下所示:
<Window x:Class="WpfApplication1.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:WpfApplication1"
mc:Ignorable="d"
Title="MainWindow" Height="350" Width="525">
<Grid>
<TextBlock>Hello world!</TextBlock>
</Grid>
</Window>
- 按 F5 或單擊選單 Debug→Start Debugging 執行應用程式。它應該看起來像: