22 lines
509 B
C#
22 lines
509 B
C#
// Copyright © 2010-2014 The CefSharp Authors. All rights reserved.
|
|
//
|
|
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
|
|
|
|
using System;
|
|
using System.Windows.Forms;
|
|
|
|
namespace CefSharp.MinimalExample.WinForms
|
|
{
|
|
public class Program
|
|
{
|
|
[STAThread]
|
|
public static void Main()
|
|
{
|
|
Cef.Initialize(new CefSettings());
|
|
|
|
var browser = new BrowserForm();
|
|
Application.Run(browser);
|
|
}
|
|
}
|
|
}
|