<Window x:Class="WpfApplication1.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="WPF" Height="200" Width="250">
<StackPanel>
<Button Content="{}{A Button}" Margin="10" Name="button1" Width="75" />
<RadioButton Content="{}{A RadioButton}" HorizontalAlignment="Center" Margin="10" />
<TextBox Text="{}{A TextBox}" HorizontalAlignment="Center" Margin="10" />
<TextBlock HorizontalAlignment="Center" Margin="10" Text="{}{A TextBlock}" />
</StackPanel>
</Window>
|