UserInfo.xaml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <Page x:Class="WPF01.pages.UserInfo"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:WPF01.pages"
  7. mc:Ignorable="d"
  8. d:DesignHeight="300" d:DesignWidth="400"
  9. Title="UserInfo"
  10. Loaded="Page_Loaded"
  11. >
  12. <Grid>
  13. <Grid.RowDefinitions>
  14. <RowDefinition Height="1*"/>
  15. <RowDefinition Height="5*"/>
  16. <RowDefinition Height="1*"/>
  17. <RowDefinition Height="1*"/>
  18. </Grid.RowDefinitions>
  19. <Grid.ColumnDefinitions>
  20. <ColumnDefinition Width="2*"/>
  21. <ColumnDefinition Width="4*"/>
  22. <ColumnDefinition Width="1*"/>
  23. <ColumnDefinition Width="4*"/>
  24. <ColumnDefinition Width="2*"/>
  25. </Grid.ColumnDefinitions>
  26. <StackPanel Grid.Column="1" HorizontalAlignment="Left" Height="168" Margin="10,10,0,0" Grid.Row="1" VerticalAlignment="Top" Width="103">
  27. <Label Content="Логин"/>
  28. <Label Content="Label" Height="23" x:Name="loginLabel" />
  29. <Label Content="Пароль"/>
  30. <PasswordBox Height="24" x:Name="passwordBox"/>
  31. <Label Content="Телефон"/>
  32. <TextBox Height="23" x:Name="phoneTextBox"/>
  33. </StackPanel>
  34. <StackPanel Grid.Column="3" HorizontalAlignment="Left" Height="168" Margin="10,10,0,0" Grid.Row="1" VerticalAlignment="Top" Width="103">
  35. <Label Content="Фамилия"/>
  36. <TextBox Height="23" x:Name="lastnameTextBox"/>
  37. <Label Content="Имя"/>
  38. <TextBox Height="23" x:Name="fistnameTextBox"/>
  39. <Label Content="Отчество"/>
  40. <TextBox Height="22" x:Name="patronymicTextBox"/>
  41. </StackPanel>
  42. <Button Grid.ColumnSpan="3" Content="Сохранить" Grid.Column="1" HorizontalAlignment="Center" Margin="0" Grid.Row="2" VerticalAlignment="Top" Width="120" Click="Button_Click"/>
  43. </Grid>
  44. </Page>