mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
22 lines
587 B
C#
22 lines
587 B
C#
|
using Avalonia.Controls.Mixins;
|
||
|
using Avalonia.ReactiveUI;
|
||
|
using Microsoft.Extensions.DependencyInjection;
|
||
|
using ReactiveUI;
|
||
|
using Wabbajack.App.Utilities;
|
||
|
|
||
|
namespace Wabbajack.App.Controls;
|
||
|
|
||
|
public partial class LogView : ReactiveUserControl<LogViewModel>
|
||
|
{
|
||
|
public LogView()
|
||
|
{
|
||
|
DataContext = App.Services.GetService<LogViewModel>()!;
|
||
|
InitializeComponent();
|
||
|
this.WhenActivated(disposables =>
|
||
|
{
|
||
|
this.OneWayBind(ViewModel, vm => vm.Messages, view => view.Messages.Items)
|
||
|
.DisposeWith(disposables);
|
||
|
});
|
||
|
}
|
||
|
|
||
|
}
|