Advertisement
Guest User

Untitled

a guest
Jul 1st, 2016
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.90 KB | None | 0 0
  1. <Window x:Class="IO1b_BasKorthals_ResturantDeEvenaar.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:IO1b_BasKorthals_ResturantDeEvenaar"
  7. mc:Ignorable="d"
  8. Title="MainWindow" Height="493.539" Width="699.017"
  9. DataContext="{Binding MenuItems}"
  10. >
  11. <Grid>
  12. <Grid.RowDefinitions>
  13. <RowDefinition Height="1*" />
  14. <RowDefinition Height="1*" />
  15. <RowDefinition Height="4*" />
  16. <RowDefinition Height="*" />
  17. </Grid.RowDefinitions>
  18. <Grid.ColumnDefinitions>
  19. <ColumnDefinition Width="1*" />
  20. <ColumnDefinition Width="2*" />
  21. <ColumnDefinition Width="3*" />
  22. </Grid.ColumnDefinitions>
  23. <Image Grid.Row="0" Grid.RowSpan="4" Source="Assets\pictureontheleft.jpg" HorizontalAlignment="Stretch" Stretch="UniformToFill" Margin="0,0,10,0"/>
  24. <StackPanel Grid.Row="0" Grid.Column="1" Grid.ColumnSpan="2" Orientation="Horizontal" HorizontalAlignment="Left" Margin="0,15,0,0">
  25. <Image Grid.Row="0" Grid.Column="1" Source="Assets\logo.bmp" />
  26. <Label Grid.Row="0" Grid.Column="1" Grid.ColumnSpan="1" Content="Resturant De Evenaar" VerticalAlignment="Center" FontWeight="Bold" FontSize="32"/>
  27. </StackPanel>
  28. <Label Grid.Row="1" Grid.Column="1" Content="Add Item To Order" VerticalAlignment="Center"/>
  29. <Label Grid.Row="1" Grid.Column="2" Content="Current Order:" VerticalAlignment="Center"/>
  30.  
  31.  
  32. <ListView x:Name="listView" Grid.Column="1" Grid.Row="2" ItemsSource="{StaticResource }">
  33.  
  34. </ListView>
  35. </Grid>
  36. </Window>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement