1234567891011121314151617181920212223242526 |
- <Window x:Class="Hotel_Course_Project.PayAddOnOrderWindow"
- 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:Hotel_Course_Project"
- mc:Ignorable="d"
- Title="Подтверждение платежа" Height="200" Width="200">
- <Grid>
- <Grid.ColumnDefinitions>
- <ColumnDefinition></ColumnDefinition>
- <ColumnDefinition></ColumnDefinition>
- </Grid.ColumnDefinitions>
- <Grid.RowDefinitions>
- <RowDefinition></RowDefinition>
- <RowDefinition></RowDefinition>
- <RowDefinition></RowDefinition>
- </Grid.RowDefinitions>
- <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center">Итоговая сумма</TextBlock>
- <TextBlock Grid.Row="1" HorizontalAlignment="Center" VerticalAlignment="Center">Вид оплаты</TextBlock>
- <TextBlock Name="SummEnd" Grid.Column="1" HorizontalAlignment="Center" VerticalAlignment="Center"></TextBlock>
- <ComboBox Name="SPayTypeCB" Grid.Row="1" Grid.Column="1"></ComboBox>
- <Button Grid.Row="2" Name="BackBtn" Click="BackBtn_Click">Отменить</Button>
- <Button Grid.Row="2" Grid.Column="1" Name="AddBtn" Click="AddBtn_Click">Подтвердить</Button>
- </Grid>
- </Window>
|