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