16 lines
867 B
XML
16 lines
867 B
XML
<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" d:Height="450" d:Width="800" SizeToContent="WidthAndHeight" Closed="Window_Closed">
|
|
<Window.DataContext>
|
|
<local:HomePageViewModel/>
|
|
</Window.DataContext>
|
|
<Grid>
|
|
<Button Command="{Binding OpenCompetitionOverlaySettings, UpdateSourceTrigger=PropertyChanged}" Content="Open Competition Overlay Settings" Margin="3" Padding="3" VerticalAlignment="Center" HorizontalAlignment="Center"/>
|
|
</Grid>
|
|
</Window>
|