瀏覽代碼

фывфыв

Irina Filimonova 1 年之前
父節點
當前提交
4efcc90c8b
共有 1 個文件被更改,包括 40 次插入0 次删除
  1. 40 0
      ROGOZ/Pages/AddTask.xaml

+ 40 - 0
ROGOZ/Pages/AddTask.xaml

@@ -12,5 +12,45 @@
         <Label Style="{StaticResource LabelStyle}">
             не готово! 
         </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="TBoxTitle" 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="TBoxCost" 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="TBoxDuration" 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="TBoxDescription" TextWrapping="Wrap" Height="115" 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>