mirror of
http://git.xinwangdao.com/cnnc-embedded-parts-detect/detect.git
synced 2025-06-25 05:54:14 +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);
|
|
}
|
|
} |