mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
27 lines
744 B
C#
27 lines
744 B
C#
using Avalonia.Controls;
|
|
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);
|
|
});
|
|
}
|
|
|
|
private void ScrollViewer_OnScrollChanged(object? sender, ScrollChangedEventArgs e)
|
|
{
|
|
ScrollViewer.ScrollToEnd();
|
|
}
|
|
} |