This repository has been archived on 2026-03-14. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Eco/Eco/Controls/CefSharpBrowser/Views/VideoBrowserView.xaml.cs
Kevin Krüger 05105bffc9 Umbenennung
2023-07-24 13:49:04 +02:00

22 lines
534 B
C#

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