目标:
创建一个简单的 WPF 应用,显示"Hello, World!"。
步骤:
- 在 Visual Studio 中创建一个新的 WPF 应用项目。
- 在 MainWindow.xaml 中,添加一个 TextBlock 控件来显示文本。
cs
<Window x:Class="WPFHelloWorld.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:WPFHelloWorld"
mc:Ignorable="d"
Title="MainWindow" Height="450" Width="800">
<Grid>
<TextBlock Text="Hello World" FontSize="24" HorizontalAlignment="Center" VerticalAlignment="Center"></TextBlock>
</Grid>
</Window>
HorizontalAlignment水平对齐方式
VerticalAlignment垂直对齐方式