UserWindow.xaml 2.6 KB

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