2013-11-12 19:14:11 +08:00
|
|
|
|
using System.Windows;
|
|
|
|
|
|
|
|
|
|
namespace CefSharp.MinimalExample.Wpf
|
|
|
|
|
{
|
|
|
|
|
public partial class App : Application
|
|
|
|
|
{
|
|
|
|
|
public App()
|
|
|
|
|
{
|
2015-11-05 07:13:24 +08:00
|
|
|
|
//Perform dependency check to make sure all relevant resources are in our output directory.
|
|
|
|
|
Cef.Initialize(new CefSettings(), shutdownOnProcessExit: true, performDependencyCheck: true);
|
2013-11-12 19:14:11 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|