1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <Page x:Class="Esoft.Pages.AddTask"
- 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:Esoft.Pages"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800"
- Title="AddTask">
- <Grid>
- <Label Style="{StaticResource LabelStyle}" FontFamily="Segoe UI Black" Background="#FFDAB3F7">
-
- </Label>
- <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
- <StackPanel HorizontalAlignment="Center" VerticalAlignment="Center">
- <StackPanel Orientation="Horizontal">
- <StackPanel Orientation="Horizontal">
- <TextBlock Style="{StaticResource BlockHeader}" FontSize="16" FontFamily="Arial" Text="ЗАДАЧА"/>
- <Separator Width="20" Background="{x:Null}" />
- <TextBox Name="TBoxTask" Width="190"/>
- </StackPanel>
- </StackPanel>
- <Separator Height="10" Background="{x:Null}" />
- <StackPanel Orientation="Horizontal">
- <TextBlock Style="{StaticResource BlockHeader}" FontSize="16" FontFamily="Arial" Text="ИСПОЛНИТЕЛЬ"/>
- <Separator Width="20" Background="{x:Null}" />
- <TextBox Name="TBoxExecutor" Width="182"/>
- </StackPanel>
- <Separator Height="10" Background="{x:Null}" />
- <StackPanel Orientation="Horizontal">
- <TextBlock Style="{StaticResource BlockHeader}" FontSize="16" FontFamily="Arial" Text="МАНАГЕР"/>
- <Separator Width="20" Background="{x:Null}" />
- <TextBox Name="TBoxManager" Width="150"/>
- </StackPanel>
- <Separator Height="10" Background="{x:Null}" />
- <StackPanel Orientation="Horizontal">
- <TextBlock Style="{StaticResource BlockHeader}" FontSize="16" FontFamily="Arial" Text="Статус"/>
- <Separator Width="20" Background="{x:Null}" />
- <TextBox Name="TBoxStatus" TextWrapping="Wrap" Width="187"/>
- </StackPanel>
- <Separator Height="10" Background="{x:Null}" />
- </StackPanel>
- <StackPanel VerticalAlignment="Center">
- <StackPanel HorizontalAlignment="Center" VerticalAlignment="Center" Grid.Column="1">
- <Button Height="30" Width="200" Margin="5" Name="BtnSave" Content="Сохранить" FontSize="14"/>
- </StackPanel>
- </StackPanel>
- </StackPanel>
- </Grid>
- </Page>
|