123456789101112131415161718192021222324252627282930313233343536 |
- <Page x:Class="PP_Ven_MosS.Pages.CreateApplication"
- 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="CreateApplication">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="100"></RowDefinition>
- <RowDefinition></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" Width="600">
- <GroupBox Height="60" Header="Описание" BorderThickness="2" BorderBrush="#FF0000" Margin="10,0,0,0">
- <TextBox Name="DescApp" Height="30"/>
- </GroupBox>
- <GroupBox Height="60" Header="Место" BorderThickness="2" BorderBrush="#FF0000" Margin="10,0,0,0">
- <TextBox Name="PlaceApp" Height="30"/>
- </GroupBox>
- <GroupBox Height="60" Header="Тип заявки" BorderThickness="2" BorderBrush="#FF0000" Margin="10,0,0,0">
- <ComboBox Name="CBTypeApp" Height="30"></ComboBox>
- </GroupBox>
- <!--<GroupBox Height="60" Header="Дата заявки" BorderThickness="2" BorderBrush="#FF0000" Margin="10,0,0,0">
- <DatePicker Name ="dob" Height="30"></DatePicker>
- </GroupBox>-->
- <Button Name="Save" Content="Отправить" FontSize="20" Style="{StaticResource BtnSt}" Click="Save_Click" Margin="0,20,0,0"></Button>
- <Button Name="Exit" Content="Выйти" FontSize="20" Style="{StaticResource BtnSt}" Click="Exit_Click" Margin="0,20,0,0"></Button>
- </StackPanel>
- </Grid>
- </Page>
|