Added boilerplate design code

This commit is contained in:
erri120 2019-10-07 14:13:53 +02:00
parent f4baae2cce
commit 10f5bda1b8
No known key found for this signature in database
GPG Key ID: A8C0A18D8D4D3135
2 changed files with 10 additions and 1 deletions

View File

@ -5,7 +5,10 @@
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:Wabbajack"
mc:Ignorable="d"
Title="ModlistPropertiesWindow" Height="450" Width="800">
Title="Wabbajack (Modlist Properties)" Height="600" Width="900"
Style="{StaticResource {x:Type Window}}" Icon="square_transparent_icon.ico" WindowStyle="ToolWindow"
ResizeMode="NoResize"
Closing="Window_Closing">
<Grid>
</Grid>

View File

@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
@ -23,5 +24,10 @@ namespace Wabbajack
{
InitializeComponent();
}
private void Window_Closing(object sender, CancelEventArgs e)
{
//Hide();
}
}
}