Files
BrightSharp.Toolkit/BrightSharp.Ui.Tests/CustomWindow.xaml.cs

29 lines
618 B
C#
Raw Normal View History

2017-01-10 21:06:47 +03:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
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
}
}