mirror of https://github.com/HandBrake/HandBrake
28 lines
982 B
C#
28 lines
982 B
C#
// --------------------------------------------------------------------------------------------------------------------
|
|
// <copyright file="VideoView.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 VideoView.xaml
|
|
// </summary>
|
|
// --------------------------------------------------------------------------------------------------------------------
|
|
|
|
namespace HandBrakeWPF.Views
|
|
{
|
|
using System.Windows.Controls;
|
|
|
|
/// <summary>
|
|
/// Interaction logic for VideoView.xaml
|
|
/// </summary>
|
|
public partial class VideoView : UserControl
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="VideoView"/> class.
|
|
/// </summary>
|
|
public VideoView()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|