mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
30 lines
687 B
C#
30 lines
687 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using ReactiveUI;
|
|
using ReactiveUI.Fody.Helpers;
|
|
using Wabbajack.Lib;
|
|
using Xilium.CefGlue.WPF;
|
|
|
|
namespace Wabbajack
|
|
{
|
|
public class WebBrowserVM : ViewModel
|
|
{
|
|
[Reactive]
|
|
public string Instructions { get; set; }
|
|
|
|
public WpfCefBrowser Browser { get; } = new WpfCefBrowser();
|
|
|
|
[Reactive]
|
|
public IReactiveCommand BackCommand { get; set; }
|
|
|
|
public WebBrowserVM(string url = "http://www.wabbajack.org")
|
|
{
|
|
Browser.Address = url;
|
|
Instructions = "Wabbajack Web Browser";
|
|
}
|
|
}
|
|
}
|