// --------------------------------------------------------------------------------------------------------------------
//
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
//
//
// Interaction logic for OptionsView.xaml
//
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrakeWPF.Views
{
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
///
/// Interaction logic for OptionsView.xaml
///
public partial class OptionsView : UserControl
{
///
/// Initializes a new instance of the class.
///
public OptionsView()
{
InitializeComponent();
}
private void VersionTextBox_OnMouseDoubleClick(object sender, MouseButtonEventArgs e)
{
this.versionTextBox.SelectAll();
}
}
}