ブログ

割とコンピュータよりの情報をお届けします。

2018年5月3日

CefSharpでAnyCPU対応に苦慮した話2

前回の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();
        }
    }
}

 

≫ 続きを読む

2018/05/03 コンピュータ   TakeMe

CefSharpでAnyCPU対応に苦慮した話

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();
        }
    }
}

 

 

 

≫ 続きを読む

2018/05/03 コンピュータ   TakeMe