Files
PowerToys/src/modules/fancyzones/editor/FancyZonesEditor/WindowLayout.xaml.cs

25 lines
627 B
C#
Raw Normal View History

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.
using System.Windows;
namespace FancyZonesEditor
{
/// <summary>
2019-12-12 13:59:58 -08:00
/// Interaction logic for WindowLayout.xaml
/// </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-12-12 13:59:58 -08:00
// WindowEditor window = new WindowEditor(); window.Show();
}
}
}