65 lines
2.2 KiB
C#
65 lines
2.2 KiB
C#
using System;
|
|
using System.IO;
|
|
using System.Windows.Forms;
|
|
using CefSharp;
|
|
using CefSharp.WinForms;
|
|
using EasyTabs;
|
|
|
|
namespace XeroBrowser
|
|
{
|
|
public static class Program
|
|
{
|
|
public static AppContainer Container;
|
|
|
|
public static TitleBarTabsApplicationContext ApplicationContext;
|
|
/// <summary>
|
|
/// The main entry point for the application.
|
|
/// </summary>
|
|
[STAThread]
|
|
static void Main()
|
|
{
|
|
Application.EnableVisualStyles();
|
|
Application.SetCompatibleTextRenderingDefault(false);
|
|
Container = new AppContainer();
|
|
CefSettings settings = new CefSettings();
|
|
|
|
if (settings.CefCommandLineArgs.ContainsKey("enable-system-flash"))
|
|
settings.CefCommandLineArgs.Remove("enable-system-flash");
|
|
settings.CefCommandLineArgs.Add("enable-system-flash", "1");
|
|
settings.CefCommandLineArgs.Add("ppapi-flash-path", Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "pepflashplayer64_32_0_0_465.dll"));
|
|
settings.CefCommandLineArgs.Add("ppapi-flash-version", "32.0.0.465");
|
|
settings.CefCommandLineArgs["plugin-policy"] = "allow";
|
|
settings.UserAgent = "cpprestsdk/2.9.0 Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 XeroBrowser/1.0";
|
|
settings.CefCommandLineArgs.Add("enable-media-stream", "1");
|
|
Cef.EnableHighDPISupport();
|
|
settings.CachePath = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData) + @"\CEF";
|
|
|
|
Cef.Initialize(settings);
|
|
|
|
Container.Tabs.Add(
|
|
|
|
new TitleBarTab(Container)
|
|
{
|
|
Content = new FrmBrowser
|
|
{
|
|
Text = @"New Tab"
|
|
}
|
|
}
|
|
|
|
);
|
|
|
|
|
|
Container.SelectedTabIndex = 0;
|
|
|
|
try {
|
|
ApplicationContext = new TitleBarTabsApplicationContext();
|
|
ApplicationContext.Start(Container);
|
|
Application.Run(ApplicationContext);
|
|
}
|
|
catch (Exception)
|
|
{
|
|
// ignored
|
|
}
|
|
}
|
|
}
|
|
}
|