mirror of
http://git.xinwangdao.com/cnnc-embedded-parts-detect/detect.git
synced 2025-06-24 21:44:12 +08:00
28 lines
612 B
C#
28 lines
612 B
C#
using Avalonia.Interactivity;
|
|
using Avalonia.Markup.Xaml;
|
|
using Avalonia.ReactiveUI;
|
|
using detect.gui.Commons;
|
|
using detect.gui.ViewModels;
|
|
using ReactiveUI;
|
|
|
|
namespace detect.gui.Views;
|
|
|
|
public partial class LogView : ReactiveUserControl<LogViewModel>
|
|
{
|
|
public LogView()
|
|
{
|
|
InitializeComponent();
|
|
this.WhenActivated(d => { });
|
|
}
|
|
|
|
private void InitializeComponent()
|
|
{
|
|
AvaloniaXamlLoader.Load(this);
|
|
}
|
|
|
|
protected override void OnLoaded(RoutedEventArgs e)
|
|
{
|
|
base.OnLoaded(e);
|
|
this.GetParent<MainView>()!.WebWindow.SetAddress(2);
|
|
}
|
|
} |