Skip to content

Commit 8534181

Browse files
committed
feat: add icons for creation and editing windows
1 parent 752e26c commit 8534181

5 files changed

Lines changed: 2 additions & 1 deletion

File tree

Desktop/App.xaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
33
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
44
xmlns:sys="clr-namespace:System;assembly=mscorlib"
5-
65
DispatcherUnhandledException="App_OnDispatcherUnhandledException">
76
<Application.Resources>
87
<ResourceDictionary>

Desktop/Resources/Add.ico

4.19 KB
Binary file not shown.

Desktop/Resources/Edit.ico

4.19 KB
Binary file not shown.

Desktop/Tasks/TaskCreation.xaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
mc:Ignorable="d"
88
x:Name="TaskCreationWindow"
99
Title="Task creation" Height="{StaticResource PopupWindowHeight}" Width="{StaticResource PopupWindowWidth}"
10+
Icon="..\Resources\Add.ico"
1011
WindowStartupLocation="CenterScreen">
1112
<Window.Resources>
1213
<converters:SaveCommandConverter x:Key="SaveCommandConverter" />

Desktop/Tasks/TaskEditing.xaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
66
mc:Ignorable="d"
77
Title="Task editing" Height="{StaticResource PopupWindowHeight}" Width="{StaticResource PopupWindowWidth}"
8+
Icon="..\Resources\Edit.ico"
89
WindowStartupLocation="CenterScreen">
910
<Grid FocusManager.FocusedElement="{Binding ElementName=Name}" Margin="{StaticResource DefaultMargin}">
1011
<Grid.RowDefinitions>

0 commit comments

Comments
 (0)