diff options
author | sr55 <[email protected]> | 2016-07-25 20:29:44 +0100 |
---|---|---|
committer | sr55 <[email protected]> | 2016-07-25 20:29:44 +0100 |
commit | 96e2f705a48ed96db9172203ade1c6ab30937dde (patch) | |
tree | 1aa4554abf2ee1beedf7dfa7e94070b8a96305d3 /win/CS/HandBrakeWPF/Views/ManagePresetView.xaml.cs | |
parent | 1903ac850ad0374b765ef3a058570a4bec067115 (diff) |
WinGui: Lay the foundation for editing presets with a simple rename window.
Diffstat (limited to 'win/CS/HandBrakeWPF/Views/ManagePresetView.xaml.cs')
-rw-r--r-- | win/CS/HandBrakeWPF/Views/ManagePresetView.xaml.cs | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/Views/ManagePresetView.xaml.cs b/win/CS/HandBrakeWPF/Views/ManagePresetView.xaml.cs new file mode 100644 index 000000000..d0964a982 --- /dev/null +++ b/win/CS/HandBrakeWPF/Views/ManagePresetView.xaml.cs @@ -0,0 +1,27 @@ +// -------------------------------------------------------------------------------------------------------------------- +// <copyright file="ManagePresetView.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 ManagePresetView.xaml +// </summary> +// -------------------------------------------------------------------------------------------------------------------- + +namespace HandBrakeWPF.Views +{ + using System.Windows; + + /// <summary> + /// Interaction logic for ManagePresetView.xaml + /// </summary> + public partial class ManagePresetView : Window + { + /// <summary> + /// Initializes a new instance of the <see cref="ManagePresetView"/> class. + /// </summary> + public ManagePresetView() + { + InitializeComponent(); + } + } +} |