V tom se proměnné dělat nedají a ani to k tomu není určeno. Slouží to k deklarativní definici uživatelského rozhraní a můžou se v tom maximálně nastavovat vlastnosti daného objektu. Takže například:
<Window x:Class="Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Window1" Height="300" Width="300">
</Window>
Odpovídá kódu:
Dim w1 As New Window1
w1.Title = "Window1"
w1.Height = 300
w1.Width = 300
|