23 lines
489 B
C#
23 lines
489 B
C#
using DirectShowLib.BDA;
|
|
using System.Configuration;
|
|
using System.Data;
|
|
using System.Windows;
|
|
using TV_Player.ViewModels;
|
|
|
|
namespace TV_Player
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for App.xaml
|
|
/// </summary>
|
|
public partial class App : Application
|
|
{
|
|
private TVPlayerViewModel _tvPlayer;
|
|
protected override void OnStartup(StartupEventArgs e)
|
|
{
|
|
_tvPlayer = new TVPlayerViewModel();
|
|
|
|
base.OnStartup(e);
|
|
}
|
|
}
|
|
}
|