XAML代码
<Window x:Class="WpfApp1.MainWindow"
xmlns="
http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="
http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525">
<Grid Margin="10,10,10,10" Width="448" Height="292">
<Label x:Name="lable1" Height="30" Background="Orange" Margin="21,12,20,250" />
<Button x:Name="button1" Height="25" Width="60" Click="button1_Click">GetName</Button>
<Label Background="Orange" Height="30" Margin="21,68,20,194" Name="label2" />
</Grid>
</Window>