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
545 B
24 lines
545 B
|
1 month ago
|
using ReactiveUI.Avalonia;
|
||
|
|
using Avalonia.Markup.Xaml;
|
||
|
|
using AuroraDesk.Presentation.ViewModels.Pages;
|
||
|
|
using ReactiveUI;
|
||
|
|
|
||
|
|
namespace AuroraDesk.Presentation.Views.Pages;
|
||
|
|
|
||
|
|
public partial class BreathePageView : ReactiveUserControl<BreathePageViewModel>
|
||
|
|
{
|
||
|
|
public BreathePageView()
|
||
|
|
{
|
||
|
|
InitializeComponent();
|
||
|
|
|
||
|
|
// 若后续需要生命周期 Hook,可在此处使用 WhenActivated
|
||
|
|
this.WhenActivated(_ => { });
|
||
|
|
}
|
||
|
|
|
||
|
|
private void InitializeComponent()
|
||
|
|
{
|
||
|
|
AvaloniaXamlLoader.Load(this);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|