/
kiselevivan
/
serviceCenter
Обзор
Документация
Войти
/
kiselevivan
/
serviceCenter
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
Windows/MainWindow.xaml
29 строк
1 KB
Ivan
fix some problem with contract
19 май 2021, 01:08
19 май 2021, 01:08
cc5f88c
Код
Авторство
О чём код?
<Window x:Class="serviceCenter.Windows.MainWindow" 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:serviceCenter.Windows" mc:Ignorable="d" WindowState="Maximized" WindowStyle="None"> <Grid> <Grid.RowDefinitions> <RowDefinition Height="auto"/> <RowDefinition Height="1*"/> </Grid.RowDefinitions> <Border Background="Gray" BorderBrush="Black" BorderThickness="1"> <Grid> <Grid.ColumnDefinitions> <ColumnDefinition Width="auto"/> <ColumnDefinition Width="auto"/> <ColumnDefinition/> </Grid.ColumnDefinitions> <Label Name="lPosition" Foreground="White" HorizontalAlignment="Left"/> <Label Name="lFIO" Foreground="White" Grid.Column="1" HorizontalAlignment="Left"/> <Button x:Name="bExit" Grid.Column="2" Content="Выйти" Click="bExit_Click" HorizontalAlignment="Right"/> </Grid> </Border> <Frame Grid.Row="1" x:Name="mainFrame" NavigationUIVisibility="Hidden" Navigated="mainFrame_Navigated"/> </Grid> </Window>