You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
499 B
24 lines
499 B
|
1 month ago
|
using Avalonia.Controls;
|
||
|
|
using Avalonia.Markup.Xaml;
|
||
|
|
using ReactiveUI.Avalonia;
|
||
|
|
using AuroraDesk.Presentation.ViewModels.Pages;
|
||
|
|
|
||
|
|
namespace AuroraDesk.Presentation.Views.Pages;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 图片浏览页面视图
|
||
|
|
/// </summary>
|
||
|
|
public partial class ImageGalleryPageView : ReactiveUserControl<ImageGalleryPageViewModel>
|
||
|
|
{
|
||
|
|
public ImageGalleryPageView()
|
||
|
|
{
|
||
|
|
InitializeComponent();
|
||
|
|
}
|
||
|
|
|
||
|
|
private void InitializeComponent()
|
||
|
|
{
|
||
|
|
AvaloniaXamlLoader.Load(this);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|