|
268 | 268 | <!-- The view if there is projects made --> |
269 | 269 | <Grid Margin="345,0,0,0"> |
270 | 270 | <Canvas HorizontalAlignment="Left" VerticalAlignment="Top" Height="45" Width="45" Margin="75,31,0,0"> |
271 | | - <Image x:Name="displayingImage" Source="{StaticResource noIcon}" Height="45" Width="45" Visibility="Hidden" PreviewMouseDown="displayingImage_PreviewMouseDown" Cursor="Hand" /> |
| 271 | + <Image x:Name="displayingImage" Source="{StaticResource noIcon}" Height="45" Width="45" Visibility="Visible" PreviewMouseDown="displayingImage_PreviewMouseDown" Cursor="Hand" /> |
272 | 272 | </Canvas> |
273 | 273 | <Canvas HorizontalAlignment="Right" VerticalAlignment="Top" Height="40" Width="40" Margin="0,45,45,0"> |
274 | 274 | <Image x:Name="settingsImage" Source="{StaticResource settingsDrawingImage}" Height="40" Width="40" Visibility="Hidden" PreviewMouseDown="settingsImage_PreviewMouseDown" Cursor="Hand" /> |
275 | 275 | </Canvas> |
| 276 | + <Canvas HorizontalAlignment="Right" VerticalAlignment="Top" Height="40" Width="40" Margin="0,45,110,0"> |
| 277 | + <Image x:Name="folderImage" Source="{StaticResource folderDrawingImage}" Height="40" Width="40" Visibility="Hidden" PreviewMouseDown="folderImage_PreviewMouseDown" Cursor="Hand" /> |
| 278 | + </Canvas> |
276 | 279 |
|
277 | 280 | <Label x:Name="displayingTitle" VerticalContentAlignment="Top" HorizontalAlignment="Left" Content="" FontSize="40" Margin="135,21,0,7" FontWeight="Medium" Visibility="Visible" /> |
278 | 281 | <Border x:Name="changeTitleBorder" BorderBrush="#FF919191" BorderThickness="2" HorizontalAlignment="Left" Height="64" Margin="135,21,0,0" VerticalAlignment="Top" Width="500" Visibility="Hidden"> |
|
314 | 317 | <Label x:Name="nextVersionUpdateThreeLabel" Visibility="Hidden" Content="3. " HorizontalAlignment="Left" Margin="20,594,0,0" VerticalAlignment="Top" FontSize="24" /> |
315 | 318 | </Grid> |
316 | 319 |
|
| 320 | + <!-- The statistics menu --> |
| 321 | + <Grid x:Name="statisticsGrid" Margin="350,100,0,0" Visibility="Hidden"> |
| 322 | + <Label x:Name="creationDateLabel" Content="Date created: 6/9/2020" HorizontalAlignment="Left" Margin="20,20,0,0" VerticalAlignment="Top" FontSize="28"/> |
| 323 | + <Label x:Name="tasksMadeLabel" Content="Tasks created: 0" HorizontalAlignment="Left" Margin="20,90,0,0" VerticalAlignment="Top" FontSize="24"/> |
| 324 | + <Label x:Name="tasksCompletedLabel" Content="Tasks completed: 0" HorizontalAlignment="Left" Margin="20,125,0,0" VerticalAlignment="Top" FontSize="24"/> |
| 325 | + <Label x:Name="statisticsDurationLabel" Content="Duration: coming soon..." HorizontalAlignment="Left" Margin="20,195,0,0" VerticalAlignment="Top" FontSize="24"/> |
| 326 | + <Label x:Name="linesOfCodeLabel" Content="Lines of code: 0" HorizontalAlignment="Left" Margin="20,265,0,0" VerticalAlignment="Top" FontSize="24"/> |
| 327 | + <Button x:Name="setCodeCountingButton" Content="Set up code counting" HorizontalAlignment="Left" Margin="20,312,0,0" VerticalAlignment="Top" Width="202" Height="52" FontSize="18" Cursor="Hand" PreviewMouseDown="setCodeCountingButton_PreviewMouseDown"/> |
| 328 | + |
| 329 | + </Grid> |
| 330 | + |
317 | 331 | <!-- Incomplete vs complete grid --> |
318 | 332 | <Grid x:Name="completeGrid" Margin="391,136,0,0" Visibility="Hidden"> |
319 | 333 | <Grid.ColumnDefinitions> |
|
481 | 495 | </Border.Effect> |
482 | 496 | <Grid> |
483 | 497 | <Grid.RowDefinitions> |
484 | | - <RowDefinition Height="70" /> |
485 | | - <RowDefinition Height="70" PreviewMouseDown="RenameProjectButtonPressed" /> |
486 | | - <RowDefinition Height="70" PreviewMouseDown="DeleteProjectButtonPressed" /> |
| 498 | + <RowDefinition Height="70"/> |
| 499 | + <RowDefinition Height="70"/> |
| 500 | + <RowDefinition Height="70"/> |
487 | 501 | </Grid.RowDefinitions> |
488 | 502 | <Grid.ColumnDefinitions> |
489 | 503 | <ColumnDefinition Width="50" /> |
|
0 commit comments