123456789101112131415161718192021222324252627282930313233 |
- <Window x:Class="Work29.UserWindow"
- 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:Work29"
- mc:Ignorable="d"
- Title="Мой профиль" MinHeight="350" MinWidth="700" Height="350" Width="700" MaxHeight="450" MaxWidth="800">
- <Grid Background="Black">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="*"/>
- <ColumnDefinition Width="*"/>
- </Grid.ColumnDefinitions>
- <Grid.RowDefinitions>
- <RowDefinition Height="*"/>
- <RowDefinition Height="*"/>
- <RowDefinition Height="*"/>
- <RowDefinition Height="*"/>
- <RowDefinition Height="*"/>
- <RowDefinition Height="*"/>
- <RowDefinition Height="*"/>
- <RowDefinition Height="*"/>
- </Grid.RowDefinitions>
- <Label Content="Здравствуй, " Foreground="White" HorizontalAlignment="Left" VerticalAlignment="Center" FontSize="15" Grid.Column="0" Grid.Row="0"/>
- <Label Content="Ваш логин:" Foreground="White" HorizontalAlignment="Left" VerticalAlignment="Center" FontSize="15" Grid.Column="0" Grid.Row="1"/>
- <Label Content="Ваш номер телефона:" Foreground="White" HorizontalAlignment="Left" VerticalAlignment="Center" FontSize="15" Grid.Column="0" Grid.Row="2"/>
- <TextBlock x:Name="textblock_FIO" Text="{Binding UserSurnameNamePatonymic}" Grid.Column="0" Grid.Row="0" HorizontalAlignment="Right" FontSize="15" VerticalAlignment="Center" Foreground="White" Width="200"/>
- <TextBlock x:Name="textblock_Login" Text="{Binding UserLogin}" Grid.Column="0" Grid.Row="1" HorizontalAlignment="Right" FontSize="15" VerticalAlignment="Center" Foreground="White" Width="200"/>
- <TextBlock x:Name="textblock_Phone" Text="{Binding UserPhone}" Grid.Column="0" Grid.Row="2" HorizontalAlignment="Right" FontSize="15" VerticalAlignment="Center" Foreground="White" Width="180"/>
- <Button Content="Посмотреть список пользователей" Command="{Binding UsersLoginWindow}" FontSize="15" Width="250" Grid.Column="0" Grid.Row="4" Height="35" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- <Button Content="Посмотреть список задач" Command="{Binding TasksWindow}" FontSize="15" Width="250" Grid.Column="0" Grid.Row="5" Height="35" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Grid>
- </Window>
|