2015-06-15 16:33:22 +08:00
|
|
|
|
// Copyright © 2010-2015 The CefSharp Authors. All rights reserved.
|
2014-10-07 09:03:00 +08:00
|
|
|
|
//
|
|
|
|
|
// 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()
|
|
|
|
|
{
|
2014-10-29 09:33:43 +08:00
|
|
|
|
Cef.Initialize(new CefSettings());
|
2014-10-07 09:03:00 +08:00
|
|
|
|
|
|
|
|
|
var browser = new BrowserForm();
|
|
|
|
|
Application.Run(browser);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|