PayAddOnOrderWindow.xaml 1.5 KB

1234567891011121314151617181920212223242526
  1. <Window x:Class="Hotel_Course_Project.PayAddOnOrderWindow"
  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:Hotel_Course_Project"
  7. mc:Ignorable="d"
  8. Title="Подтверждение платежа" Height="200" Width="200">
  9. <Grid>
  10. <Grid.ColumnDefinitions>
  11. <ColumnDefinition></ColumnDefinition>
  12. <ColumnDefinition></ColumnDefinition>
  13. </Grid.ColumnDefinitions>
  14. <Grid.RowDefinitions>
  15. <RowDefinition></RowDefinition>
  16. <RowDefinition></RowDefinition>
  17. <RowDefinition></RowDefinition>
  18. </Grid.RowDefinitions>
  19. <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center">Итоговая сумма</TextBlock>
  20. <TextBlock Grid.Row="1" HorizontalAlignment="Center" VerticalAlignment="Center">Вид оплаты</TextBlock>
  21. <TextBlock Name="SummEnd" Grid.Column="1" HorizontalAlignment="Center" VerticalAlignment="Center"></TextBlock>
  22. <ComboBox Name="SPayTypeCB" Grid.Row="1" Grid.Column="1"></ComboBox>
  23. <Button Grid.Row="2" Name="BackBtn" Click="BackBtn_Click">Отменить</Button>
  24. <Button Grid.Row="2" Grid.Column="1" Name="AddBtn" Click="AddBtn_Click">Подтвердить</Button>
  25. </Grid>
  26. </Window>