22 lines
482 B
C#
22 lines
482 B
C#
namespace VideoBrowser.Views
|
|
{
|
|
using System.Windows.Controls;
|
|
|
|
/// <summary>
|
|
/// Interaction logic for AboutView.xaml.
|
|
/// </summary>
|
|
public partial class AboutView : UserControl
|
|
{
|
|
#region Constructors
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="AboutView"/> class.
|
|
/// </summary>
|
|
public AboutView()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
#endregion Constructors
|
|
}
|
|
} |