13 lines
211 B
C#
13 lines
211 B
C#
using System.Windows;
|
|
|
|
namespace CefSharp.MinimalExample.Wpf
|
|
{
|
|
public partial class App : Application
|
|
{
|
|
public App()
|
|
{
|
|
Cef.Initialize(new CefSettings());
|
|
}
|
|
}
|
|
}
|