CreateChange.xaml 1.3 KB

12345678910111213141516171819202122
  1. <Window x:Class="BuzuevaDemo.CreateChange"
  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:BuzuevaDemo"
  7. mc:Ignorable="d"
  8. Title="Добавление/редактирование данных" Height="760" Width="410" MinHeight="730" MinWidth="410" Icon="/Img/Приятный шелест.ico">
  9. <Grid>
  10. <Grid.ColumnDefinitions>
  11. <ColumnDefinition Width="100"/>
  12. <ColumnDefinition Width="*"/>
  13. </Grid.ColumnDefinitions>
  14. <Grid.RowDefinitions>
  15. <RowDefinition Height="100"/>
  16. <RowDefinition Height="*"/>
  17. </Grid.RowDefinitions>
  18. <Image Source="/Img/Приятный шелест.png" Grid.Row="0" Grid.Column="0"/>
  19. <TextBlock Text="Приятный шелест" Grid.Row="0" Grid.Column="1" HorizontalAlignment="Center" VerticalAlignment="Center" FontSize="40" FontFamily="Monotype Corsiva"/>
  20. <Frame Grid.Row="1" Grid.ColumnSpan ="2" Name="PageChange" NavigationUIVisibility="Hidden"/>
  21. </Grid>
  22. </Window>