// -------------------------------------------------------------------------------------------------------------------- // // 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 AdvancedView.xaml // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrakeWPF.Views.Controls { using System.Windows; using System.Windows.Controls; /// /// Interaction logic for AdvancedView.xaml /// public partial class AdvancedView : UserControl { /// /// Initializes a new instance of the class. /// public AdvancedView() { InitializeComponent(); } /// /// The "Query" Dependancy Property /// public static readonly DependencyProperty QueryProperty = DependencyProperty.Register("Query", typeof(string), typeof(AdvancedView)); /// /// Gets or sets State. /// public string Query { get { return (string)this.GetValue(QueryProperty); } set { this.SetValue(QueryProperty, value); } } } }