12345678910111213141516171819202122232425262728293031323334 |
- <Page x:Class="LR1_05._04.AddEditPage"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:LR1_05._04"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800"
- Title="AddEditPage">
- <Grid>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="200"/>
- <ColumnDefinition Width="*"/>
- </Grid.ColumnDefinitions>
- <Grid.RowDefinitions>
- <RowDefinition Height="*"/>
- <RowDefinition Height="*"/>
- <RowDefinition Height="*"/>
- <RowDefinition Height="*"/>
- </Grid.RowDefinitions>
- <TextBlock Text="Название"></TextBlock>
- <TextBlock Text="Количество звезд" Grid.Row="1"></TextBlock>
- <TextBlock Text="Страна" Grid.Row="2"></TextBlock>
- <TextBox MaxLength="100" Grid.Column="1"></TextBox>
- <TextBox Grid.Column="1" Grid.Row="1" Width="175" HorizontalAlignment="Left"></TextBox>
- <ComboBox Grid.Row="2" Grid.Column="1" x:Name="ComboCountries" DisplayMemberPath="Name"></ComboBox>
- <Button Content="Сохранить" Grid.ColumnSpan="2" Grid.Row="3" Name="BtnSave" Click="BtnSave_Click"></Button>
- <Button Content="Back" Name="BtnBack" Width="175" Height="30" HorizontalAlignment="Right" Margin="0,-57,0,140" Click="BtnBack_Click" Grid.Column="1"></Button>
- </Grid>
- </Page>
|