• Source
    1. <Window x:Class="WpfPizza.MainWindow"
    2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    6. xmlns:local="clr-namespace:WpfPizza"
    7. mc:Ignorable="d"
    8. Title="MainWindow" Height="450" Width="800">
    9. <Grid Background="#FFE8F9AF">
    10. <Label Content="BESTEL JE PIZZA" HorizontalAlignment="Left" Margin="46,27,0,0" VerticalAlignment="Top" Width="211" Height="47" FontSize="24"/>
    11. <RadioButton x:Name="radiobuttonHot" Content=" Hot &amp; Spicy" HorizontalAlignment="Left" Margin="46,102,0,0" VerticalAlignment="Top" Height="21" Width="133" FontSize="18" Checked="RadioButton_Checked" GroupName="group1"/>
    12. <RadioButton x:Name="radiobutton4seizoenen" Content=" 4 Seizoenen" HorizontalAlignment="Left" Margin="46,151,0,0" VerticalAlignment="Top" Height="21" Width="133" FontSize="18" GroupName="group1" Checked="radiobutton4seizoenen_Checked"/>
    13. <RadioButton x:Name="radiobtnHawai" Content=" Hawai" HorizontalAlignment="Left" Margin="46,204,0,0" VerticalAlignment="Top" Height="21" Width="133" FontSize="18" GroupName="group1" Checked="radiobtnHawai_Checked"/>
    14. <TextBlock x:Name="lbl1" HorizontalAlignment="Left" Margin="308,102,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Height="41" Width="201"/>
    15. <Image x:Name="img1" HorizontalAlignment="Left" Height="103" Margin="526,137,0,0" VerticalAlignment="Top" Width="208" RenderTransformOrigin="0.5,0.5">
    16. <Image.RenderTransform>
    17. <TransformGroup>
    18. <ScaleTransform/>
    19. <SkewTransform AngleY="-0.691"/>
    20. <RotateTransform/>
    21. <TranslateTransform Y="-0.603"/>
    22. </TransformGroup>
    23. </Image.RenderTransform>
    24. </Image>
    25.  
    26. </Grid>
    27. </Window>
    28.