Skip to content

Commit a09094c

Browse files
committed
feat: increase height in both creation & editing windows
1 parent 07f5a4b commit a09094c

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

Desktop/App.xaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
<Thickness x:Key="SmallMarginAtTop">0,10,0,0</Thickness>
1515
<Thickness x:Key="BigMarginAtTop">0,40,0,0</Thickness>
1616
<sys:Double x:Key="DescriptionTextBoxHeight">75</sys:Double>
17+
<sys:Double x:Key="PopupWindowHeight">300</sys:Double>
18+
<sys:Double x:Key="PopupWindowWidth">400</sys:Double>
1719
</ResourceDictionary>
1820
</Application.Resources>
1921
</Application>

Desktop/Tasks/TaskCreation.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
xmlns:converters="clr-namespace:Desktop.Tasks.Converters"
77
mc:Ignorable="d"
88
x:Name="TaskCreationWindow"
9-
Title="Task creation" Height="250" Width="400"
9+
Title="Task creation" Height="{StaticResource PopupWindowHeight}" Width="{StaticResource PopupWindowWidth}"
1010
WindowStartupLocation="CenterScreen">
1111
<Window.Resources>
1212
<converters:SaveCommandConverter x:Key="SaveCommandConverter" />

Desktop/Tasks/TaskEditing.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
55
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
66
mc:Ignorable="d"
7-
Title="TaskEditing" Height="250" Width="400"
7+
Title="TaskEditing" Height="{StaticResource PopupWindowHeight}" Width="{StaticResource PopupWindowWidth}"
88
WindowStartupLocation="CenterScreen">
99
<Grid Margin="{StaticResource DefaultMargin}">
1010
<StackPanel>

0 commit comments

Comments
 (0)