Inheritance: Acr.XamForms.ViewModels.ViewModel
 public MainViewModel()
 {
     var events = new EventAggregator();
     var config = new Configuration(events: events).WithCss().WithDefaultLoader(m => 
     {
         m.IsNavigationEnabled = true;
         m.IsResourceLoadingEnabled = true;
     });
     context = BrowsingContext.New(config);
     profiler = new ProfilerViewModel(events);
     errors = new ErrorsViewModel(events);
     dom = new DOMViewModel();
     query = new QueryViewModel();
     repl = new ReplViewModel();
     settings = new SettingsViewModel();
     statistics = new StatisticsViewModel();
     tree = new TreeViewModel();
     sheets = new SheetViewModel();
     cts = new CancellationTokenSource();
     views = new ITabViewModel[] 
     {
         dom,
         query,
         repl,
         statistics,
         tree,
         sheets
     };
     logs = new IEventViewModel[]
     {
         profiler,
         errors
     };
 }
Esempio n. 2
0
 public HomeViewModel(SettingsViewModel settings, HistoryViewModel history)
 {
     this.Settings = settings;
     this.History = history;
 }
 static SettingsViewModel()
 {
     instance = new SettingsViewModel();
 }
Esempio n. 4
0
 static SettingsViewModel()
 {
     instance = new SettingsViewModel();
 }