CefSharp.MinimalExample/CefSharp.MinimalExample.Wpf/App.xaml.cs

14 lines
374 B
C#

using System.Windows;
namespace CefSharp.MinimalExample.Wpf
{
public partial class App : Application
{
public App()
{
//Perform dependency check to make sure all relevant resources are in our output directory.
Cef.Initialize(new CefSettings(), shutdownOnProcessExit: true, performDependencyCheck: true);
}
}
}