|
@@ -9,7 +9,7 @@
|
|
|
Background="Transparent"
|
|
|
WindowStyle="None"
|
|
|
WindowStartupLocation="CenterScreen"
|
|
|
- Title="𝖊𝖘𝖔𝖋𝖙" Height="620" Width="1000"
|
|
|
+ Title="𝖊𝖘𝖔𝖋𝖙" Height="680" Width="1100"
|
|
|
ResizeMode="NoResize"
|
|
|
MouseDown="Window_MouseDown">
|
|
|
<Grid>
|
|
@@ -29,45 +29,69 @@
|
|
|
<ColumnDefinition/>
|
|
|
</Grid.ColumnDefinitions>-->
|
|
|
|
|
|
+
|
|
|
+
|
|
|
<Border Background="#e6f4ff" CornerRadius="20"/>
|
|
|
<Grid>
|
|
|
<Grid.ColumnDefinitions>
|
|
|
- <ColumnDefinition Width="300"/>
|
|
|
+ <ColumnDefinition Width="280"/>
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
</Grid.ColumnDefinitions>
|
|
|
+ <Grid.RowDefinitions>
|
|
|
+ <RowDefinition Height="50"/>
|
|
|
+ <RowDefinition Height="*"/>
|
|
|
+ </Grid.RowDefinitions>
|
|
|
+ <Frame Name="MainFrame" NavigationUIVisibility="Hidden" Grid.Column="1" Grid.Row="1"/>
|
|
|
</Grid>
|
|
|
+
|
|
|
|
|
|
<!--Панель навигации-->
|
|
|
|
|
|
- <Grid HorizontalAlignment="Left" Width="250">
|
|
|
+ <Grid HorizontalAlignment="Left" Width="280">
|
|
|
+
|
|
|
+
|
|
|
<Border Background="#4285B4" CornerRadius="20,0,0,20"/>
|
|
|
- <StackPanel Width="250" Height="450" Cursor="">
|
|
|
+ <Image Source="/Resources/logo.png" VerticalAlignment="Top" Margin="30,15"/>
|
|
|
+
|
|
|
+ <StackPanel Width="280" Height="400" Margin="0,20,0,0">
|
|
|
|
|
|
<Button Name="General" Style="{DynamicResource NaviButtons}">
|
|
|
- <Grid Width="230">
|
|
|
+ <Grid Width="280">
|
|
|
<Image Source="/Resources/GeneralHome.png" Style="{StaticResource ImageStyle}"/>
|
|
|
<TextBlock Text="Главная" Style="{StaticResource Text_Style}"/>
|
|
|
</Grid>
|
|
|
</Button>
|
|
|
-
|
|
|
<Separator Height="20" Background="Transparent"/>
|
|
|
-
|
|
|
<Button Name="TaskList" Style="{DynamicResource NaviButtons}">
|
|
|
- <Grid Width="230">
|
|
|
+ <Grid Width="280">
|
|
|
<TextBlock Text="Задачи" Style="{StaticResource Text_Style}"/>
|
|
|
+ <Image Source="/Resources/Список задач.png" Style="{StaticResource ImageStyle}"/>
|
|
|
</Grid>
|
|
|
</Button>
|
|
|
-
|
|
|
<Separator Height="20" Background="Transparent"/>
|
|
|
-
|
|
|
<Button Name="ExecutorList" Style="{DynamicResource NaviButtons}">
|
|
|
- <Grid Width="230">
|
|
|
+ <Grid Width="280">
|
|
|
<TextBlock Text="Исполнители" Style="{StaticResource Text_Style}"/>
|
|
|
+ <Image Source="/Resources/EMPLOYEE.png" Style="{StaticResource ImageStyle}"/>
|
|
|
+ </Grid>
|
|
|
+ </Button>
|
|
|
+ <Separator Height="20" Background="Transparent"/>
|
|
|
+ <Button Name="Help" Style="{DynamicResource NaviButtons}">
|
|
|
+ <Grid Width="280">
|
|
|
+ <TextBlock Text="Помощь" Style="{StaticResource Text_Style}"/>
|
|
|
+ <Image Source="/Resources/HELPES.png" Style="{StaticResource ImageStyle}"/>
|
|
|
</Grid>
|
|
|
</Button>
|
|
|
|
|
|
</StackPanel>
|
|
|
-
|
|
|
+ <StackPanel VerticalAlignment="Bottom" Height="3" Width="225" Margin="0,0,0,100" Background="#002F55"/>
|
|
|
+ <Button Name="AccExit" Style="{DynamicResource NaviButtons}" VerticalAlignment="Bottom" Margin="0,0,0,15">
|
|
|
+ <Grid Width="280">
|
|
|
+ <TextBlock Text="Выход" Style="{StaticResource Text_Style}"/>
|
|
|
+ <Image Source="/Resources/AccExit.png" Style="{StaticResource ImageStyle}"/>
|
|
|
+ </Grid>
|
|
|
+ </Button>
|
|
|
+
|
|
|
</Grid>
|
|
|
|
|
|
</Grid>
|