Skip to content

Commit 2ac9376

Browse files
committed
Set fixed window size in MainWindow.axaml
Added explicit Width and Height properties to MainWindow.axaml to ensure the window opens at 800x450 pixels. Also reverted the version number in Directory.Packages.props from 0.1.1.1 to 0.1.1.0.
1 parent 2cffb17 commit 2ac9376

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Directory.Packages.props

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
<Project>
2-
<!-- https://learn.microsoft.com/en-us/nuget/consume-packages/central-package-management -->
32
<PropertyGroup>
43
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
5-
<Version>0.1.1.1</Version>
4+
<Version>0.1.1.0</Version>
65
<AssemblyVersion>$(Version)</AssemblyVersion>
76
<FileVersion>$(Version)</FileVersion>
87
<InformationalVersion>$(Version)</InformationalVersion>

SemanticCode/Views/MainWindow.axaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
66
xmlns:views="clr-namespace:SemanticCode.Views"
77
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
8+
Width="800"
9+
Height="450"
810
x:Class="SemanticCode.Views.MainWindow"
911
Icon="/Assets/avalonia-logo.ico"
1012
WindowStartupLocation="CenterScreen"

0 commit comments

Comments
 (0)