using CefSharp;
using CefSharp.WinForms;
namespace CEFDemo
{
public partial class mainForm : Form
{
public mainForm()
{
mainForm.CheckForIllegalCrossThreadCalls = true;
InitializeComponent();
}
private const string baseURL = "http://localhost";
private static Dictionary<string, string> URL = new Dictionary<string, string>()
{
{"LOGIN", baseURL + "/login.php" },
{"DASH", baseURL + "/dashboard.php" }
};
public ChromiumWebBrowser chromeBrowser = new ChromiumWebBrowser(baseURL);
private void InitBrowser()
{
}
}
}