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