123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <Page x:Class="PP_Ven_MosS.Pages.Profile"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:PP_Ven_MosS.Pages"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800"
- Title="Profile">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="35"></RowDefinition>
- <RowDefinition></RowDefinition>
- <RowDefinition Height="70"></RowDefinition>
- </Grid.RowDefinitions>
- <StackPanel Grid.Row="0" Grid.ColumnSpan="2" HorizontalAlignment="Center" VerticalAlignment="Center" Orientation="Horizontal">
- <TextBlock Text="Личный кабинет" FontWeight="Bold" FontSize="30" Margin="100,0"></TextBlock>
- </StackPanel>
- <StackPanel Grid.Row="1" Orientation="Vertical" HorizontalAlignment="Center" VerticalAlignment="Center">
- <GroupBox Width="500" Height="50" Header="Фамилия">
- <TextBox x:Name="txtSurn" MinWidth="500" BorderBrush="#FF6C73E6" BorderThickness="0,0,0,2"/>
- </GroupBox>
- <GroupBox Width="500" Height="50" Header="Имя">
- <TextBox x:Name="txtName" MinWidth="500" BorderBrush="#FF6C73E6" BorderThickness="0,0,0,2"/>
- </GroupBox>
- <GroupBox Width="500" Height="50" Header="Отчество">
- <TextBox x:Name="txtPatron" MinWidth="500" BorderBrush="#FF6C73E6" BorderThickness="0,0,0,2"/>
- </GroupBox>
- <GroupBox Width="500" Height="50" Header="Должность">
- <TextBox x:Name="txtPost" MinWidth="500" BorderBrush="#FF6C73E6" BorderThickness="0,0,0,2"/>
- </GroupBox>
- <GroupBox Width="500" Height="50" Header="Номер телефона">
- <TextBox x:Name="txtPhone" MinWidth="500" BorderBrush="#FF6C73E6" BorderThickness="0,0,0,2"/>
- </GroupBox>
- <GroupBox Width="500" Height="50" Header="Логин">
- <TextBox x:Name="txtLog" MinWidth="500" BorderBrush="#FF6C73E6" BorderThickness="0,0,0,2"/>
- </GroupBox>
- <GroupBox Width="500" Height="50" Header="Пароль">
- <TextBox x:Name="txtPass" MinWidth="500" BorderBrush="#FF6C73E6" BorderThickness="0,0,0,2"/>
- </GroupBox>
- <GroupBox Width="500" Height="50" Header="Выполненные заявки" Visibility="Hidden" Name="GBApp">
- <TextBlock x:Name="txtApp" MinWidth="500"/>
- </GroupBox>
- <GroupBox Width="500" Height="50" Header="Проведенные мероприятия" Visibility="Hidden" Name="GBEvent">
- <TextBlock x:Name="txtEvent" MinWidth="500"/>
- </GroupBox>
- </StackPanel>
- <StackPanel Grid.Row="3" Grid.ColumnSpan="2" HorizontalAlignment="Center" VerticalAlignment="Center" Orientation="Horizontal">
- <Button Height="30" Content="Сохранить" FontSize="20" Style="{StaticResource BtnSt}" Name="Save" Click="Save_Click"></Button>
- <Button Height="30" Content="Выйти" FontSize="20" Style="{StaticResource BtnSt}" Name="Exit" Click="Exit_Click"></Button>
- </StackPanel>
- </Grid>
- </Page>
|