diff options
author | sr55 <[email protected]> | 2016-07-23 22:57:00 +0100 |
---|---|---|
committer | sr55 <[email protected]> | 2016-07-23 22:57:00 +0100 |
commit | f77bf9985eb96c08fd327c82cfba10bdee30297e (patch) | |
tree | 6e544f6c6d84a368c5479042ed0ce8fb8582bd14 /win/CS/HandBrakeWPF/Views/MetaDataView.xaml.cs | |
parent | 63f04ee378c199d993e5b01d16ca9b4008b4ef00 (diff) |
WinGui: Stubbing out some meta data code.
Diffstat (limited to 'win/CS/HandBrakeWPF/Views/MetaDataView.xaml.cs')
-rw-r--r-- | win/CS/HandBrakeWPF/Views/MetaDataView.xaml.cs | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/Views/MetaDataView.xaml.cs b/win/CS/HandBrakeWPF/Views/MetaDataView.xaml.cs new file mode 100644 index 000000000..467f6b8a8 --- /dev/null +++ b/win/CS/HandBrakeWPF/Views/MetaDataView.xaml.cs @@ -0,0 +1,28 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +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 +{ + /// <summary> + /// Interaction logic for MetaDataView.xaml + /// </summary> + public partial class MetaDataView : UserControl + { + public MetaDataView() + { + InitializeComponent(); + } + } +} |