using System.Collections.Specialized; using Avalonia.Controls; using ClaudeDo.Ui.ViewModels.Islands; namespace ClaudeDo.Ui.Views.Islands; public partial class SessionTerminalView : UserControl { public SessionTerminalView() { InitializeComponent(); } protected override void OnDataContextChanged(EventArgs e) { base.OnDataContextChanged(e); if (DataContext is DetailsIslandViewModel vm) vm.Log.CollectionChanged += OnLogChanged; } private void OnLogChanged(object? sender, NotifyCollectionChangedEventArgs e) { if (e.Action == NotifyCollectionChangedAction.Add) LogScroll.ScrollToEnd(); } }