2019-12-12 12:13:31 -08:00
|
|
|
|
// Copyright (c) Microsoft Corporation
|
|
|
|
|
|
// The Microsoft Corporation licenses this file to you under the MIT license.
|
|
|
|
|
|
// See the LICENSE file in the project root for more information.
|
|
|
|
|
|
|
2019-09-04 18:26:26 +02:00
|
|
|
|
using System.Windows;
|
|
|
|
|
|
|
|
|
|
|
|
namespace FancyZonesEditor
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
2019-12-12 13:59:58 -08:00
|
|
|
|
/// Interaction logic for WindowLayout.xaml
|
2019-09-04 18:26:26 +02:00
|
|
|
|
/// </summary>
|
|
|
|
|
|
public partial class WindowLayout : Window
|
|
|
|
|
|
{
|
|
|
|
|
|
public WindowLayout()
|
|
|
|
|
|
{
|
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
|
}
|
2019-12-12 13:26:02 -08:00
|
|
|
|
|
2019-12-12 13:59:58 -08:00
|
|
|
|
private void OnLoaded(object sender, RoutedEventArgs e)
|
2019-09-04 18:26:26 +02:00
|
|
|
|
{
|
2019-12-12 13:59:58 -08:00
|
|
|
|
// WindowEditor window = new WindowEditor(); window.Show();
|
2019-09-04 18:26:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|