WPF和Win Form的差别就在于控件的创建

WPF程序的初始化XAML意义

1
2
3
4
5
6
7
8
9
10
11
12
<Window x:Class="WPF01.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" MAXL控件的所有程序集
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" 解析XAML的程序集
xmlns:local="clr-namespace:WPF01"
mc:Ignorable="d" 在不同的设备上实现自适应效果
Title="MainWindow" Height="450" Width="800"> 窗体名称和大小
<Grid>

</Grid>
</Window>

控件的首字母一定要大写

image-20240815104948149

image-20240815105201296

设置启动项(App.xaml)

image-20240815105614797

TextBlock中的Text属性的内容放在内容的最后面

image-20240815110648158

image-20240815111037713

image-20240815111008596

image-20240815113646602

image-20240815150516072

image-20240815150740470

image-20240815151817649