mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
25 lines
778 B
C#
25 lines
778 B
C#
using System.Linq;
|
|
using Avalonia.Controls;
|
|
using Avalonia.Controls.Mixins;
|
|
using Avalonia.ReactiveUI;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using ReactiveUI;
|
|
|
|
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,
|
|
items => items.Reverse().ToArray())
|
|
.DisposeWith(disposables);
|
|
this.BindCommand(ViewModel, vm => vm.CopyLogFile, view => view.CopyLog)
|
|
.DisposeWith(disposables);
|
|
});
|
|
}
|
|
} |