前回のCefSharpでAnyCPU対応の話のときは少し標準のCefSharpの使い方とかけ離れた書き方になっているのに気付いた。
(2018.08.18追記: WPFについては,このままWinForms用のコンポーネントを連携機能で開いてもよいがWPF用のコンポーネントを使ってもよい。)
今回は修正を最小限にとどめる。(この設定でもプロパティに32bitを優先を設定している場合には32bitで起動してしまうので注意)
NuGetでCefSharp.WinFormsをインストールして。*.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; namespace webui { static class Program { /// /// アプリケーションのメイン エントリ ポイントです。 /// [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); AppDomain.CurrentDomain.AssemblyResolve += Resolver; Application.Run(new Form1()); } // 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; using System.IO; namespace webui { public partial class Form1 : Form { public ChromiumWebBrowser chromeBrowser; public Form1() { InitializeComponent(); InitializeChromium(); } public void InitializeChromium() { CefSettings settings = new CefSettings(); settings.BrowserSubprocessPath = Path.Combine(AppDomain.CurrentDomain.SetupInformation.ApplicationBase, Environment.Is64BitProcess ? "x64" : "x86", "CefSharp.BrowserSubprocess.exe"); Cef.Initialize(settings, performDependencyCheck: false, browserProcessHandler: null); 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(); } } }