mirror of
http://git.xinwangdao.com/cnnc-embedded-parts-detect/detect.git
synced 2025-06-24 13:34:13 +08:00
20 lines
399 B
C#
20 lines
399 B
C#
![]() |
using Avalonia.Markup.Xaml;
|
|||
|
using Avalonia.ReactiveUI;
|
|||
|
using detect.gui.ViewModels;
|
|||
|
using ReactiveUI;
|
|||
|
|
|||
|
namespace detect.gui.Views;
|
|||
|
|
|||
|
public partial class HomeView : ReactiveUserControl<HomeViewModel>
|
|||
|
{
|
|||
|
public HomeView()
|
|||
|
{
|
|||
|
InitializeComponent();
|
|||
|
this.WhenActivated(d => { });
|
|||
|
}
|
|||
|
|
|||
|
private void InitializeComponent()
|
|||
|
{
|
|||
|
AvaloniaXamlLoader.Load(this);
|
|||
|
}
|
|||
|
}
|