Mega Code Archive

 
Categories / VB.Net Tutorial / WPF
 

A simple XAML structure

<Window x: Class="Window1"     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="1"     Height="300" Width="300">     <Grid>         <TextBlock>Hello, WPF!</TextBlock>     </Grid> </Window>