mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 17:39:39 -04:00
* WIP: Grid export and plugin extraction * Tweak export process * Check for recursion of the same assembly load. * Individual screens aren't always primary? * Wait for cache to be writable * Export selection only. * Update built xml docs * Ignore invalid archives. * Need to ensure task is started.
49 lines
1.1 KiB
C#
49 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 System.Collections.IList SelectedItems { get; set; }
|
|
|
|
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));
|
|
}
|
|
}
|
|
}
|
|
}
|