More updates.
This commit is contained in:
19
MangaReader.WinUI/Views/LibraryView.xaml.cs
Normal file
19
MangaReader.WinUI/Views/LibraryView.xaml.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using MangaReader.WinUI.ViewModels;
|
||||
using Microsoft.UI.Xaml;
|
||||
using Microsoft.UI.Xaml.Controls;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MangaReader.WinUI.Views;
|
||||
|
||||
public sealed partial class LibraryView : UserControl
|
||||
{
|
||||
private readonly LibraryViewModel viewModel;
|
||||
|
||||
public LibraryView()
|
||||
{
|
||||
InitializeComponent();
|
||||
|
||||
viewModel = (LibraryViewModel)DataContext;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user