diff options
author | sr55 <[email protected]> | 2011-02-19 17:28:58 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2011-02-19 17:28:58 +0000 |
commit | 0b8918fb48eca14c002657942b199b706fc8959d (patch) | |
tree | 50c42fa57adf8a92e6d5e13a925353687010ea4c /win/C#/HandBrakeWPF/Views/AboutView.xaml.cs | |
parent | da4025b6af1d0f5550159b87bf6a14c025752107 (diff) |
WinGui:
- Setting up the structure of the WPF UI. Just empty files with some basic wiring up between them.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3800 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/HandBrakeWPF/Views/AboutView.xaml.cs')
-rw-r--r-- | win/C#/HandBrakeWPF/Views/AboutView.xaml.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/win/C#/HandBrakeWPF/Views/AboutView.xaml.cs b/win/C#/HandBrakeWPF/Views/AboutView.xaml.cs new file mode 100644 index 000000000..22de6967b --- /dev/null +++ b/win/C#/HandBrakeWPF/Views/AboutView.xaml.cs @@ -0,0 +1,15 @@ +namespace HandBrakeWPF.Views
+{
+ using System.Windows;
+
+ /// <summary>
+ /// Interaction logic for AboutView.xaml
+ /// </summary>
+ public partial class AboutView : Window
+ {
+ public AboutView()
+ {
+ InitializeComponent();
+ }
+ }
+}
|