mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 17:39:39 -04:00
Upon arrival of new records to the backing ObservableCollection, scroll the DataGrid to the last item. However, when the DataGrid is initialized, there's not yet a data context set, so when that happens, then we can listen to the CollectionChanged event to trigger scrolling (only really needed for additions). In passing, also set the DataGrid to ReadOnly. In the other two files, minor simplifications/cleanup.
48 lines
1.1 KiB
C#
48 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Data;
|
|
using System.Threading.Tasks;
|
|
using System.Collections.ObjectModel;
|
|
using Observatory.UI.Models;
|
|
using ReactiveUI;
|
|
using System.Reactive.Linq;
|
|
using Observatory.Framework;
|
|
|
|
namespace Observatory.UI.ViewModels
|
|
{
|
|
public class BasicUIViewModel : ViewModelBase
|
|
{
|
|
private ObservableCollection<object> basicUIGrid;
|
|
|
|
|
|
public ObservableCollection<object> BasicUIGrid
|
|
{
|
|
get => basicUIGrid;
|
|
set
|
|
{
|
|
basicUIGrid = value;
|
|
this.RaisePropertyChanged(nameof(BasicUIGrid));
|
|
}
|
|
}
|
|
|
|
public BasicUIViewModel(ObservableCollection<object> BasicUIGrid)
|
|
{
|
|
this.BasicUIGrid = BasicUIGrid;
|
|
}
|
|
|
|
private PluginUI.UIType uiType;
|
|
|
|
public PluginUI.UIType UIType
|
|
{
|
|
get => uiType;
|
|
set
|
|
{
|
|
uiType = value;
|
|
this.RaisePropertyChanged(nameof(UIType));
|
|
}
|
|
}
|
|
}
|
|
}
|