diff options
author | sr55 <[email protected]> | 2011-11-20 18:30:43 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2011-11-20 18:30:43 +0000 |
commit | c0c88720f5f59104770be38f0e84d7c2897ef465 (patch) | |
tree | b1a17f7d388203cf99f5eec0665c1806dd1b8221 /win/CS/HandBrakeWPF/Views/ErrorView.xaml.cs | |
parent | 24cfd6cf3e18288052533ea385a6d0b648fac139 (diff) |
WinGui: (WPF) Add global exception handler and new wpf exception view.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4361 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/Views/ErrorView.xaml.cs')
-rw-r--r-- | win/CS/HandBrakeWPF/Views/ErrorView.xaml.cs | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/Views/ErrorView.xaml.cs b/win/CS/HandBrakeWPF/Views/ErrorView.xaml.cs new file mode 100644 index 000000000..b21194e35 --- /dev/null +++ b/win/CS/HandBrakeWPF/Views/ErrorView.xaml.cs @@ -0,0 +1,27 @@ +// --------------------------------------------------------------------------------------------------------------------
+// <copyright file="ErrorView.xaml.cs" company="HandBrake Project (http://handbrake.fr)">
+// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
+// </copyright>
+// <summary>
+// Interaction logic for ErrorView.xaml
+// </summary>
+// --------------------------------------------------------------------------------------------------------------------
+
+namespace HandBrakeWPF.Views
+{
+ using System.Windows;
+
+ /// <summary>
+ /// Interaction logic for ErrorView.xaml
+ /// </summary>
+ public partial class ErrorView : Window
+ {
+ /// <summary>
+ /// Initializes a new instance of the <see cref="ErrorView"/> class.
+ /// </summary>
+ public ErrorView()
+ {
+ InitializeComponent();
+ }
+ }
+}
|