|
@@ -25,10 +25,10 @@
|
|
|
<RowDefinition Height="*"/>
|
|
|
</Grid.RowDefinitions>
|
|
|
<Button x:Name="btnClose" Style="{DynamicResource PanelButtonX}" Margin="0,10,10,0" Grid.Row="0" Grid.Column="1" Height="35" Width="35" Click="btnClose_Click">
|
|
|
-
|
|
|
+
|
|
|
</Button>
|
|
|
<Button x:Name="btnMinimize" Style="{DynamicResource PanelButtonMin}" Margin="0,10,55,0" Grid.Row="0" Grid.Column="1" Height="35" Width="35" Click="btnMinimize_Click">
|
|
|
-
|
|
|
+
|
|
|
</Button>
|
|
|
<Frame Name="MainFrame" NavigationUIVisibility="Hidden" Grid.Column="1" Grid.Row="1"/>
|
|
|
|
|
@@ -51,27 +51,75 @@
|
|
|
<TextBlock Text="Главная" Style="{StaticResource Text_Style}" FontFamily="Arial Black" Margin="60,0,0,0"/>
|
|
|
</Grid>
|
|
|
</Button>
|
|
|
- <Separator Height="20" Background="Transparent"/>
|
|
|
+ <Separator Height="3" Background="Transparent" RenderTransformOrigin="0.5,0.5">
|
|
|
+ <Separator.RenderTransform>
|
|
|
+ <TransformGroup>
|
|
|
+ <ScaleTransform ScaleY="-1"/>
|
|
|
+ <SkewTransform/>
|
|
|
+ <RotateTransform/>
|
|
|
+ <TranslateTransform/>
|
|
|
+ </TransformGroup>
|
|
|
+ </Separator.RenderTransform>
|
|
|
+ </Separator>
|
|
|
<Button Name="TaskList" Style="{DynamicResource NaviButtons}" Click="TaskList_Click">
|
|
|
<Grid Width="280">
|
|
|
<TextBlock Text="Задачи" Style="{StaticResource Text_Style}" FontFamily="Arial Black"/>
|
|
|
<Image Source="/Resources/TaskList.png" Style="{StaticResource ImageStyle}"/>
|
|
|
</Grid>
|
|
|
</Button>
|
|
|
- <Separator Height="20" Background="Transparent"/>
|
|
|
+ <Separator Height="3" Background="Transparent" RenderTransformOrigin="0.5,0.5">
|
|
|
+ <Separator.RenderTransform>
|
|
|
+ <TransformGroup>
|
|
|
+ <ScaleTransform ScaleY="-1"/>
|
|
|
+ <SkewTransform/>
|
|
|
+ <RotateTransform/>
|
|
|
+ <TranslateTransform/>
|
|
|
+ </TransformGroup>
|
|
|
+ </Separator.RenderTransform>
|
|
|
+ </Separator>
|
|
|
<Button Name="ExecutorList" Style="{DynamicResource NaviButtons}" Click="ExecutorList_Click">
|
|
|
<Grid Width="280">
|
|
|
- <TextBlock Text="Исполнители" Style="{StaticResource Text_Style}" FontFamily="Arial Black"/>
|
|
|
- <Image Source="/Resources/EmployeeList.png" Style="{StaticResource ImageStyle}"/>
|
|
|
+ <TextBlock Text="Исполнители" Style="{StaticResource Text_Style}" FontFamily="Arial Black"/>
|
|
|
+ <Image Source="/Resources/EmployeeList.png" Style="{StaticResource ImageStyle}"/>
|
|
|
</Grid>
|
|
|
</Button>
|
|
|
- <Separator Height="20" Background="Transparent"/>
|
|
|
+
|
|
|
+ <Separator Height="5" Background="Transparent" RenderTransformOrigin="0.5,0.5">
|
|
|
+ <Separator.RenderTransform>
|
|
|
+ <TransformGroup>
|
|
|
+ <ScaleTransform ScaleY="-1"/>
|
|
|
+ <SkewTransform/>
|
|
|
+ <RotateTransform/>
|
|
|
+ <TranslateTransform/>
|
|
|
+ </TransformGroup>
|
|
|
+ </Separator.RenderTransform>
|
|
|
+ </Separator>
|
|
|
<Button Name="Chart" Style="{DynamicResource NaviButtons}" Click="Chart_Click">
|
|
|
<Grid Width="280">
|
|
|
- <TextBlock Text="Графики" Style="{StaticResource Text_Style}" FontFamily="Arial Black"/>
|
|
|
+ <Grid.ColumnDefinitions>
|
|
|
+ <ColumnDefinition Width="13*"/>
|
|
|
+ <ColumnDefinition Width="27*"/>
|
|
|
+ </Grid.ColumnDefinitions>
|
|
|
+ <TextBlock Text="Графики" Style="{StaticResource Text_Style}" FontFamily="Arial Black" Grid.ColumnSpan="2" Margin="60,0,0,0"/>
|
|
|
<Image Source="/Resources/Chart.png" Style="{StaticResource ImageStyle}"/>
|
|
|
</Grid>
|
|
|
</Button>
|
|
|
+ <Separator Height="1" Background="Transparent" RenderTransformOrigin="0.5,0.5">
|
|
|
+ <Separator.RenderTransform>
|
|
|
+ <TransformGroup>
|
|
|
+ <ScaleTransform ScaleY="-1"/>
|
|
|
+ <SkewTransform/>
|
|
|
+ <RotateTransform/>
|
|
|
+ <TranslateTransform/>
|
|
|
+ </TransformGroup>
|
|
|
+ </Separator.RenderTransform>
|
|
|
+ </Separator>
|
|
|
+ <Button Name="Mahager" Style="{DynamicResource NaviButtons}" Click="Manager_Click">
|
|
|
+ <Grid Width="280">
|
|
|
+ <TextBlock Text="Менеджеры" Style="{StaticResource Text_Style}" FontFamily="Arial Black"/>
|
|
|
+ <Image Source="/Resources/EmployeeList.png" Style="{StaticResource ImageStyle}"/>
|
|
|
+ </Grid>
|
|
|
+ </Button>
|
|
|
|
|
|
</StackPanel>
|
|
|
<StackPanel VerticalAlignment="Bottom" Height="3" Width="250" Margin="0,0,0,100" Background="#2e5d85"/>
|