CefSharpでAnyCPU対応に苦慮した
概ねここにあるように設定すればよいのだが、微妙にここも参考になる。
(2018.08.18追記: 概ねこの内容で問題ないがCef.Initialize()を書くまでの処理の流れが参考と異なるので次の記事に参考ページの順番になるように書き直した) (書き直したら,Basercmsのバグのために書式が崩れた)
Visual Studio 2017 (Express 2017 for Windows Desktopでも可)を開く。
メニューバーの「ファイル(F)」から「新しいプロジェクト(P)」を選び
「Windows フォーム アプリケーション(.NET Framework) Visual C#」のプロジェクトを作る。フレームワーク(F)は.NET Framework 4.5.2以降を選択できる。
ソリューション エクスプローラーの今作成したプロジェクトで右クリックして現れるコンテキストメニューから「NuGet パッケージの管理」を選びCefSharp.WinFormsを探してインストールする(63.0.3が最新だった)。
*.csprojファイルには、(最初のProperyGroupに)
<CefSharpAnyCpuSupport>true</CefSharpAnyCpuSupport>
を追加する必要がある。
Program.csに以下のように変更を加える。これは参考の通り。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Runtime.CompilerServices;
using System.Reflection;
using System.IO;
using CefSharp;
namespace webui2
{
static class Program
{
///
/// アプリケーションのメイン エントリポイントです。 ///
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application..SetCompatibleTextRenderingDefault(false);
AppDomain.CurrentDomain.AssemblyResolve += Resolver;
LoadApp();
Application.Run(new Form1());Application.Run(new Form1());
}
[MethodImpl(MethodImplOptions.NoInlining)]
private static void LoadApp()
{
var settings = new CefSettings();
// Set BrowserSubProcessPath based on app bitness at runtime
settings.BrowserSubprocessPath = Path.Combine(AppDomain.CurrentDomain.SetupInformation.ApplicationBase, Environment.Is64BitProcess ? "x64" : "x86", "CefSharp.BrowserSubprocess.exe");
// Make sure you set performDependencyCheck false
Cef.Initialize(settings, performDependencyCheck: false, browserProcessHandler: null);
}
// Will attempt to load missing assembly from either x86 or x64 subdir
private static Assembly Resolver(object sender, ResolveEventArgs args)
{
if (args.Name.StartsWith("CefSharp")) {
string assemblyName = args.Name.Split(new[] { ',' }, 2)[0] + ".dll";
string archSpecificPath = Path.Combine(AppDomain.CurrentDomain.SetupInformation.ApplicationBase, Environment.Is64BitProcess ? "x64" : "x86", assemblyName);
return File.Exists(archSpecificPath) ? Assembly.LoadFile(archSpecificPath) : null;
}
return null;
}
}
}
例えばForm1.csは以下のようにしておく。
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using CefSharp;
using CefSharp.WinForms;
namespace webui2
{
public partial class Form1 : Form
{
public ChromiumWebBrowser chromeBrowser;
public Form1()
{
InitializeComponent();
InitializeChromium();
}
public void InitializeChromium()
{
chromeBrowser = new ChromiumWebBrowser("https://www.valuestar.work/");
this.Controls.Add(chromeBrowser);
chromeBrowser.Dock = DockStyle.Fill;
}
private void Form1_FormClosing(object sender, FormClosingEventArgs e)
{
Cef.Shutdown();
}
}
}