mirror of
https://github.com/kangyu-california/PersistentWindows.git
synced 2025-05-11 04:55:39 +02:00
22 lines
582 B
C#
22 lines
582 B
C#
using System.ComponentModel;
|
|
using Microsoft.Practices.Prism.Mvvm;
|
|
|
|
namespace Ninjacrab.PersistentWindows.WpfShell
|
|
{
|
|
public class DiagnosticsViewModel : BindableBase
|
|
{
|
|
public DiagnosticsViewModel()
|
|
{
|
|
EventLog = new BindingList<string>();
|
|
}
|
|
|
|
public const string AllProcessesPropertyName = "AllProcesses";
|
|
private BindingList<string> allProcesses;
|
|
public BindingList<string> EventLog
|
|
{
|
|
get { return allProcesses; }
|
|
set { SetProperty(ref allProcesses, value); }
|
|
}
|
|
|
|
}
|
|
}
|