Created home page view to act as the main landing for the application.

This commit is contained in:
2025-05-22 10:49:02 -04:00
parent 0d997585ac
commit c4370af08c
5 changed files with 87 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<Window x:Class="osrs_toolbox.HomePageView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:osrs_toolbox"
mc:Ignorable="d"
Title="OSRS Toolbox" Height="450" Width="800">
<Window.DataContext>
<local:HomePageViewModel/>
</Window.DataContext>
<Grid>
</Grid>
</Window>