4

我用 VS2012 创建了一个新的 Wpf 项目。我右键单击项目并选择“管理 NuGet 包”。然后我为 Wpf 安装了 CefSharp 包。

然后我使用了这个“指南”:https ://github.com/cefsharp/CefSharp/blob/master/README.WPF.md

可悲的是,我得到了 4 个错误,我不知道如何摆脱它们!

这些是我得到的错误(我用“文件路径”取出了项目的路径):

Error   5   The type 'cefSharp:WebView' was not found. Verify that you are not missing an assembly reference and that all referenced assemblies have been built.    "filepath"\Chromium\MainWindow.xaml 6   10  Chromium
Error   3   The name "WebView" does not exist in the namespace "clr-namespace:CefSharp.Wpf;assembly=CefSharp.Wpf".  "filepath"\Chromium\MainWindow.xaml 6   9   Chromium

Error   6   The name 'Cef' does not exist in the current context    "filepath"\Chromium\MainWindow.xaml.cs  28  13  Chromium
Error   4   Assembly 'CefSharp.Wpf' was not found. Verify that you are not missing an assembly reference. Also, verify that your project and all referenced assemblies have been built. "filepath"\Chromium\MainWindow.xaml 4   22  Chromium

我的主窗口 XAML:

<Window x:Class="Chromium.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  xmlns:cefSharp="clr-namespace:CefSharp.Wpf;assembly=CefSharp.Wpf" Title="MainWindow" Height="350" Width="525">
<Grid>
    <cefSharp:WebView x:Name="WebView" />
</Grid>

MainWindow.cs 背后的代码:

using System.ComponentModel;
using System.Windows;
using CefSharp;

namespace Chromium
{
    public partial class MainWindow 
    {
        public MainWindow()
        {
            InitializeComponent();

            WebView.PropertyChanged += OnWebViewPropertyChanged;

            Cef.Initialize(new Settings());
        }

        private void OnWebViewPropertyChanged(object sender, PropertyChangedEventArgs e)
        {
            switch (e.PropertyName)
            {
                case "IsBrowserInitialized":
                    if (WebView.IsBrowserInitialized)
                    {
                        WebView.Load("http://10.211.55.2:42000");
                    }

                    break;
            }
        }
    }
}

MainWindow 的 XAML 和代码与 README.MD 中的代码几乎完全相同

我还手动从 github 的 0.25.7 二进制包中复制了这 2 个文件(libcef.dll 和 icudt.dll)到 bin\Debug 和 bin\Release 文件夹。

我究竟做错了什么?

4

1 回答 1

3

嗯,我意识到这是几个月前的事了,看起来您应用的指南和代码是针对 CefSharp1 代码分支的(AFAIK 的那个版本只支持 x86)。请注意CefSharp1 和 current 的 WPF 控件master完全不同。

在刚刚发布的 CefSharp 33.0.0 中,我建议您尝试使用该版本的 NuGet ,并首先使用WPF 示例开始运行所有内容CefSharp.MinimalExample。我认为你使用的指南从那时起已经改变了一点。不过,不确定它是否已准备好迎接黄金时段。

最后,在 CefSharp Google Group 上发布了一篇关于“DIY 版本的 MinimalExample”的好文章。阅读我认为仍然适用的前两篇文章。

于 2014-10-11T18:22:33.323 回答