musicschool/musicschoolapp/WorkingWindow.xaml

25 lines
1.5 KiB
XML

<Window x:Class="musicschoolapp.WorkingWindow"
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:musicschoolapp"
mc:Ignorable="d"
Title="Основное окно программы" Height="450" Width="800">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="75"></RowDefinition>
<RowDefinition Height="30"/>
<RowDefinition Height="*"></RowDefinition>
<RowDefinition Height="30"></RowDefinition>
</Grid.RowDefinitions>
<TextBlock Text="Приложение музыкальной школы" FontSize="30" HorizontalAlignment="Center"
VerticalAlignment="Center" FontFamily="Tahoma"></TextBlock>
<Grid Background="CornflowerBlue" Panel.ZIndex="-2" ></Grid>
<Grid Grid.Row="2" Background="#FFE1E4FF"></Grid>
<TextBlock x:Name="identifier" Grid.Row="1" Text="Вы вошли как: " HorizontalAlignment="Center" VerticalAlignment="Center" FontSize="14"></TextBlock>
<Frame Grid.Row="2" Name="MainFrame"></Frame>
<Button x:Name="buttonUpdate" Content="Обновить" HorizontalAlignment="Center" Grid.Row="3" VerticalAlignment="Center" Width="96" Click="buttonUpdate_Click"/>
</Grid>
</Window>