From 02ef15e82e63c3d4924fde8a03ef277ee4339785 Mon Sep 17 00:00:00 2001 From: sr55 Date: Sun, 20 Nov 2011 20:02:49 +0000 Subject: WinGui: (WPF) Some further UI Work. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4362 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- .../Views/Controls/ChaptersView.xaml.cs | 49 +++++++++++++++++++++- 1 file changed, 48 insertions(+), 1 deletion(-) (limited to 'win/CS/HandBrakeWPF/Views/Controls/ChaptersView.xaml.cs') diff --git a/win/CS/HandBrakeWPF/Views/Controls/ChaptersView.xaml.cs b/win/CS/HandBrakeWPF/Views/Controls/ChaptersView.xaml.cs index 4bb0e2d1f..4ad791fb1 100644 --- a/win/CS/HandBrakeWPF/Views/Controls/ChaptersView.xaml.cs +++ b/win/CS/HandBrakeWPF/Views/Controls/ChaptersView.xaml.cs @@ -1,15 +1,62 @@ -namespace HandBrakeWPF.Views.Controls +// -------------------------------------------------------------------------------------------------------------------- +// +// 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 ChaptersView.xaml +// +// -------------------------------------------------------------------------------------------------------------------- + +namespace HandBrakeWPF.Views.Controls { + using System; + using System.Collections.Generic; + using System.Windows; using System.Windows.Controls; + using HandBrake.ApplicationServices.Parsing; + /// /// Interaction logic for ChaptersView.xaml /// public partial class ChaptersView : UserControl { + /// + /// Initializes a new instance of the class. + /// public ChaptersView() { InitializeComponent(); } + + /// + /// The "Query" Dependancy Property + /// + public static readonly DependencyProperty QueryProperty = DependencyProperty.Register("Chapters", typeof(IList), typeof(ChaptersView), new PropertyMetadata(null)); + + /// + /// Gets or sets State. + /// + public IList Query + { + get { return (IList)this.GetValue(QueryProperty); } + set { this.SetValue(QueryProperty, value); } + } + + /// + /// Import from CSV + /// + public void Import() + { + throw new NotImplementedException("Not Implemented Yet"); + } + + /// + /// Export to CSV + /// + public void Export() + { + throw new NotImplementedException("Not Implemented Yet"); + } } } -- cgit v1.2.3