Advertisement
Guest User

Untitled

a guest
May 27th, 2016
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.42 KB | None | 0 0
  1. <Window x:Class="WPF_Project.EditRes"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. Title="Edytuj Rezerwacje " Height="400" Width="450">
  5. <Grid>
  6. <Grid.ColumnDefinitions>
  7. <ColumnDefinition Width="1.4*"/>
  8. <ColumnDefinition Width="*"/>
  9. </Grid.ColumnDefinitions>
  10. <Grid.RowDefinitions>
  11. <RowDefinition Height="1.1*"/>
  12. <RowDefinition Height="*"/>
  13. </Grid.RowDefinitions>
  14.  
  15. <GroupBox x:Name="DaneKlienta" Grid.Column="0" Grid.Row="0" Header="Dane Klienta:">
  16.  
  17. <Grid Grid.Column="0" Grid.Row="1">
  18. <Grid.RowDefinitions>
  19. <RowDefinition Height="*"/>
  20. <RowDefinition Height="*"/>
  21. <RowDefinition Height="*"/>
  22.  
  23. </Grid.RowDefinitions>
  24.  
  25. <Grid.ColumnDefinitions>
  26. <ColumnDefinition Width="0.4*"/>
  27. <ColumnDefinition Width="0.5*"/>
  28. </Grid.ColumnDefinitions>
  29.  
  30. <Label Content="Imię:" Grid.Column="0" Grid.Row="0" VerticalAlignment="Center"/>
  31. <TextBox x:Name="tbName" Grid.Column="1" Grid.Row="0" VerticalAlignment="Center"/>
  32. <Label Content="Nazwisko:" Grid.Column="0" Grid.Row="1" VerticalAlignment="Center"/>
  33. <TextBox x:Name="tbSurname" Grid.Column="1" Grid.Row="1" VerticalAlignment="Center"/>
  34. <Label Content="Nr. telefonu:" Grid.Column="0" Grid.Row="2" VerticalAlignment="Center"/>
  35. <TextBox x:Name="tbPhone" Grid.Column="1" Grid.Row="2" VerticalAlignment="Center"/>
  36. </Grid>
  37.  
  38.  
  39. </GroupBox>
  40. <GroupBox x:Name="gbKalendarz" Header="Termin" Grid.Column="1" Grid.Row="0">
  41. <Calendar x:Name="claCalendar" Grid.Column="1" Grid.Row="0" IsEnabled="False" />
  42. </GroupBox>
  43.  
  44.  
  45.  
  46.  
  47. <GroupBox x:Name="gbDodatkowe" Header="Dodatkowe informacje" Grid.Column="0" Grid.Row="1">
  48. <Grid>
  49. <Grid.ColumnDefinitions>
  50. <ColumnDefinition Width="0.6*"/>
  51. <ColumnDefinition Width="0.4*"/>
  52. </Grid.ColumnDefinitions>
  53. <Grid.RowDefinitions>
  54. <RowDefinition Height="*"/>
  55. <RowDefinition Height="*"/>
  56. <RowDefinition Height="*"/>
  57. </Grid.RowDefinitions>
  58. <Label Content="Poziom obsługi" Grid.Row="0" Grid.Column="0" VerticalAlignment="Center"/>
  59. <Slider x:Name="slidQuality" Grid.Row="0" Grid.Column="1" VerticalAlignment="Center" />
  60.  
  61. <CheckBox x:Name="cbFood" Grid.Row="1" Grid.Column="0" Grid.ColumnSpan="2" VerticalAlignment="Center" Content="Dodatkowe jedzenie"/>
  62.  
  63. <Label Content="Płatność" Grid.Row="2" Grid.Column="0" VerticalAlignment="Center"/>
  64. <ComboBox x:Name="comPayment" Grid.Row="2" VerticalAlignment="Center" Grid.ColumnSpan="2" Margin="110,15,0,14" >
  65. <ComboBoxItem>Gotówka</ComboBoxItem>
  66. <ComboBoxItem>Karta płatnicza</ComboBoxItem>
  67. <ComboBoxItem>Czek</ComboBoxItem>
  68. </ComboBox>
  69.  
  70. </Grid>
  71. </GroupBox>
  72. <Grid >
  73.  
  74.  
  75.  
  76.  
  77.  
  78.  
  79.  
  80.  
  81.  
  82.  
  83.  
  84. </Grid>
  85.  
  86.  
  87. <Grid Grid.Column="1" Grid.Row="1">
  88. <Grid.RowDefinitions>
  89. <RowDefinition Height="*"/>
  90. <RowDefinition Height="*"/>
  91. <RowDefinition Height="*"/>
  92. <RowDefinition Height="*"/>
  93. </Grid.RowDefinitions>
  94. <Grid.ColumnDefinitions>
  95. <ColumnDefinition Width="*"/>
  96. <ColumnDefinition Width="*"/>
  97.  
  98. </Grid.ColumnDefinitions>
  99. <Label Grid.Column="0" Grid.Row="0" Content="Cena:"/>
  100. <Label Grid.Column="1" Grid.Row="0" Content="0zł" x:Name="lbPrice"/>
  101.  
  102. <Button Grid.Row="2" Grid.Column="0" Grid.ColumnSpan="2" HorizontalAlignment="Center" VerticalAlignment="Center" Content="Edytuj rezerwacje" x:Name="btEditRes" />
  103. <Button Grid.Row="3" Grid.Column="0" Grid.ColumnSpan="2" HorizontalAlignment="Center" VerticalAlignment="Center" Content="Anuluj" x:Name="btCanelRes" Width="97" Click="btCanelRes_Click" />
  104.  
  105. </Grid>
  106.  
  107. </Grid>
  108. </Window>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement