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/VideoBrowser/Views/DownloadFlyoutView.xaml.cs
2023-07-24 12:00:34 +02:00

29 lines
671 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace VideoBrowser.Views
{
/// <summary>
/// Interaction logic for DownloadFlyoutView.xaml
/// </summary>
public partial class DownloadFlyoutView : UserControl
{
public DownloadFlyoutView()
{
InitializeComponent();
}
}
}