From cd3e951792f05944fb9ba4f1bc17e581318bfe8f Mon Sep 17 00:00:00 2001 From: sr55 Date: Fri, 30 Dec 2011 18:57:30 +0000 Subject: WinGui: (WPF) Move all the main UI tab UserControls into an MVVM format. Mostly code shuffling. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4393 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- win/CS/HandBrakeWPF/Views/VideoView.xaml.cs | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 win/CS/HandBrakeWPF/Views/VideoView.xaml.cs (limited to 'win/CS/HandBrakeWPF/Views/VideoView.xaml.cs') diff --git a/win/CS/HandBrakeWPF/Views/VideoView.xaml.cs b/win/CS/HandBrakeWPF/Views/VideoView.xaml.cs new file mode 100644 index 000000000..f59435f02 --- /dev/null +++ b/win/CS/HandBrakeWPF/Views/VideoView.xaml.cs @@ -0,0 +1,27 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +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; + +namespace HandBrakeWPF.Views +{ + /// + /// Interaction logic for VideoView.xaml + /// + public partial class VideoView : UserControl + { + public VideoView() + { + InitializeComponent(); + } + } +} -- cgit v1.2.3