Files

17 lines
291 B
C#
Raw Permalink Normal View History

using System.Windows;
2017-01-10 21:06:47 +03:00
2017-02-18 00:15:59 +03:00
namespace BrightSharp.Ui.Tests
2017-01-10 21:06:47 +03:00
{
/// <summary>
2017-02-18 00:15:59 +03:00
/// Interaction logic for CustomWindow.xaml
2017-01-10 21:06:47 +03:00
/// </summary>
2017-02-18 00:15:59 +03:00
public partial class CustomWindow : Window
2017-01-10 21:06:47 +03:00
{
2017-02-18 00:15:59 +03:00
public CustomWindow()
2017-01-10 21:06:47 +03:00
{
InitializeComponent();
}
2017-02-18 00:15:59 +03:00
2017-01-10 21:06:47 +03:00
}
}