Files

29 lines
657 B
C#
Raw Permalink 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.Navigation;
using System.Windows.Shapes;
2017-02-18 00:15:59 +03:00
namespace BrightSharp.Toolkit.Extra.UiTests
2017-01-10 21:06:47 +03:00
{
/// <summary>
2017-02-18 00:15:59 +03:00
/// Interaction logic for MainWindow.xaml
2017-01-10 21:06:47 +03:00
/// </summary>
2017-02-18 00:15:59 +03:00
public partial class MainWindow : Window
2017-01-10 21:06:47 +03:00
{
2017-02-18 00:15:59 +03:00
public MainWindow()
2017-01-10 21:06:47 +03:00
{
InitializeComponent();
}
}
}