23 lines
543 B
C#
23 lines
543 B
C#
namespace VideoBrowserTestApp
|
|
{
|
|
using VideoBrowserTestApp.ViewModels;
|
|
|
|
/// <summary>
|
|
/// Interaction logic for MainWindow.xaml.
|
|
/// </summary>
|
|
public partial class MainWindow
|
|
{
|
|
#region Constructors
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="MainWindow"/> class.
|
|
/// </summary>
|
|
public MainWindow()
|
|
{
|
|
this.InitializeComponent();
|
|
this.DataContext = new MainWindowViewModel();
|
|
}
|
|
|
|
#endregion Constructors
|
|
}
|
|
} |