Profile.xaml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <Page x:Class="PP_Ven_MosS.Pages.Profile"
  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:PP_Ven_MosS.Pages"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450" d:DesignWidth="800"
  9. Title="Profile">
  10. <Grid>
  11. <Grid.RowDefinitions>
  12. <RowDefinition Height="35"></RowDefinition>
  13. <RowDefinition></RowDefinition>
  14. <RowDefinition Height="70"></RowDefinition>
  15. </Grid.RowDefinitions>
  16. <StackPanel Grid.Row="0" Grid.ColumnSpan="2" HorizontalAlignment="Center" VerticalAlignment="Center" Orientation="Horizontal">
  17. <TextBlock Text="Личный кабинет" FontWeight="Bold" FontSize="30" Margin="100,0"></TextBlock>
  18. </StackPanel>
  19. <StackPanel Grid.Row="1" Orientation="Vertical" HorizontalAlignment="Center" VerticalAlignment="Center">
  20. <GroupBox Width="500" Height="50" Header="Фамилия">
  21. <TextBox x:Name="txtSurn" MinWidth="500" BorderBrush="#FF6C73E6" BorderThickness="0,0,0,2"/>
  22. </GroupBox>
  23. <GroupBox Width="500" Height="50" Header="Имя">
  24. <TextBox x:Name="txtName" MinWidth="500" BorderBrush="#FF6C73E6" BorderThickness="0,0,0,2"/>
  25. </GroupBox>
  26. <GroupBox Width="500" Height="50" Header="Отчество">
  27. <TextBox x:Name="txtPatron" MinWidth="500" BorderBrush="#FF6C73E6" BorderThickness="0,0,0,2"/>
  28. </GroupBox>
  29. <GroupBox Width="500" Height="50" Header="Должность">
  30. <TextBox x:Name="txtPost" MinWidth="500" BorderBrush="#FF6C73E6" BorderThickness="0,0,0,2"/>
  31. </GroupBox>
  32. <GroupBox Width="500" Height="50" Header="Номер телефона">
  33. <TextBox x:Name="txtPhone" MinWidth="500" BorderBrush="#FF6C73E6" BorderThickness="0,0,0,2"/>
  34. </GroupBox>
  35. <GroupBox Width="500" Height="50" Header="Логин">
  36. <TextBox x:Name="txtLog" MinWidth="500" BorderBrush="#FF6C73E6" BorderThickness="0,0,0,2"/>
  37. </GroupBox>
  38. <GroupBox Width="500" Height="50" Header="Пароль">
  39. <TextBox x:Name="txtPass" MinWidth="500" BorderBrush="#FF6C73E6" BorderThickness="0,0,0,2"/>
  40. </GroupBox>
  41. <GroupBox Width="500" Height="50" Header="Выполненные заявки" Visibility="Hidden" Name="GBApp">
  42. <TextBlock x:Name="txtApp" MinWidth="500"/>
  43. </GroupBox>
  44. <GroupBox Width="500" Height="50" Header="Проведенные мероприятия" Visibility="Hidden" Name="GBEvent">
  45. <TextBlock x:Name="txtEvent" MinWidth="500"/>
  46. </GroupBox>
  47. </StackPanel>
  48. <StackPanel Grid.Row="3" Grid.ColumnSpan="2" HorizontalAlignment="Center" VerticalAlignment="Center" Orientation="Horizontal">
  49. <Button Height="30" Content="Сохранить" FontSize="20" Style="{StaticResource BtnSt}" Name="Save" Click="Save_Click"></Button>
  50. <Button Height="30" Content="Выйти" FontSize="20" Style="{StaticResource BtnSt}" Name="Exit" Click="Exit_Click"></Button>
  51. </StackPanel>
  52. </Grid>
  53. </Page>