<Window x:Class="WpfBieden.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:WpfBieden"
mc:Ignorable="d"
Title="Bieden" Height="450" Width="800">
<Grid Background="White">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="56*"/>
<ColumnDefinition Width="43*"/>
</Grid.ColumnDefinitions>
<Label x:Name="lblTitel" Content="Prachtige Vaas! Doe een bod!" HorizontalAlignment="Left" Margin="34,41,0,0" VerticalAlignment="Top" Width="295" FontSize="18" Height="39" FontWeight="Bold"/>
<Label x:Name="lblNaam" Content="Naam:" HorizontalAlignment="Left" Margin="34,111,0,0" VerticalAlignment="Top" Height="32" Width="87" FontSize="16"/>
<Label x:Name="lblBod" Content="Bod:" HorizontalAlignment="Left" Margin="34,160,0,0" VerticalAlignment="Top" RenderTransformOrigin="0.553,0.009" Width="68" FontSize="16" Height="31"/>
<TextBox x:Name="txtbox1" HorizontalAlignment="Left" Height="23" Margin="126,120,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="162"/>
<TextBox x:Name="txtbox2" HorizontalAlignment="Left" Height="23" Margin="126,168,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="162"/>
<Button x:Name="butn1" Content="Plaats een Bod!" HorizontalAlignment="Left" Margin="148,239,0,0" VerticalAlignment="Top" Width="106" Height="31" Click="butn1_Click"/>
<Label x:Name="labeltext" Content="" HorizontalAlignment="Left" Margin="62,305,0,0" VerticalAlignment="Top" Width="355" Height="40"/>
<Image x:Name="img1" Grid.Column="1" HorizontalAlignment="Left" Height="184" Margin="48,86,0,0" VerticalAlignment="Top" Width="206" Source="Vaas.jpg"/>
<Rectangle Grid.Column="1" HorizontalAlignment="Left" Height="205" Margin="61,86,0,0" Stroke="Black" VerticalAlignment="Top" Width="193"/>
</Grid>
</Window>