WPFとは、従来は個別に提供されていた
などの機能をまとめた、ソフトウェア コンポーネントです。
WPFでは、
などがサポートされます。WPFとは 【Windows Presentation Foundation】 - IT用語辞典 e-Words

<Window x:Class="sample.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Window1" Height="100" Width="300">
<Grid>
<Label Height="28" HorizontalAlignment="Left" Name="label1" VerticalAlignment="Top" Width="120">Label</Label>
<Button Height="23" HorizontalAlignment="Right" Name="button1" VerticalAlignment="Bottom" Width="75">Button</Button>
</Grid>
</Window>
Windows FormでもWPFを利用できます。そのためには必要なアセンブリを参照に追加します。