<Window x:Class="Exercise5.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:Exercise5"
Title="Countries treeview" Height="350" Width="500">
<TreeViewItem Header="North America">
<StackPanel Orientation="Horizontal" Margin="0,2,0,0">
<Image Source="C:\Users\Thibault\Documents\toegepaste informatica\2TIN\.Net Advanced\Github\Guts-DotNetAdvanced\Chapter2_WPF_Controls\Exercise5\images\canada.png" Height="30" Width="33"></Image>
<TextBlock>Canada</TextBlock>
<StackPanel Orientation="Horizontal" Margin="0,2,0,0">
<Image Source="C:\Users\Thibault\Documents\toegepaste informatica\2TIN\.Net Advanced\Github\Guts-DotNetAdvanced\Chapter2_WPF_Controls\Exercise5\images\Mexico.png" Height="30" Width="33"></Image>
<TextBlock>Mexico</TextBlock>
<StackPanel Orientation="Horizontal" Margin="0,2,0,0">
<Image Source="C:\Users\Thibault\Documents\toegepaste informatica\2TIN\.Net Advanced\Github\Guts-DotNetAdvanced\Chapter2_WPF_Controls\Exercise5\images\usa.png" Height="30" Width="33"></Image>
<TextBlock>USA</TextBlock>
<TreeViewItem Header="South America">
<StackPanel Orientation="Horizontal" Margin="0,2,0,0">
<Image Source="C:\Users\Thibault\Documents\toegepaste informatica\2TIN\.Net Advanced\Github\Guts-DotNetAdvanced\Chapter2_WPF_Controls\Exercise5\images\argentina.png" Height="30" Width="33"></Image>
<TextBlock>Argentina</TextBlock>
<StackPanel Orientation="Horizontal" Margin="0,2,0,0">
<Image Source="C:\Users\Thibault\Documents\toegepaste informatica\2TIN\.Net Advanced\Github\Guts-DotNetAdvanced\Chapter2_WPF_Controls\Exercise5\images\Brazil.png" Height="30" Width="33"></Image>
<TextBlock>Brazil</TextBlock>
<StackPanel Orientation="Horizontal" Margin="0,2,0,0">
<Image Source="C:\Users\Thibault\Documents\toegepaste informatica\2TIN\.Net Advanced\Github\Guts-DotNetAdvanced\Chapter2_WPF_Controls\Exercise5\images\uruguay.png" Height="30" Width="33"></Image>
<TextBlock>Uruguay</TextBlock>