CefSharp-WPF:应用程序不在其他PC中呈现

时间:2016-09-23 05:04:49

标签: wpf chromium-embedded cefsharp

我是CefSharp的新手,所以我遵循了CefSharp-WPF的first tutorial,这使我创建了一个新的应用程序。

但是,当我将此应用程序与bin/x64/release目录中的文件夹复制到其他PC时,它打开了应用程序但页面不会被渲染。

我需要为启动其他PC设置一些配置吗?

这是我的代码段。

  

MainWindow.xaml.cs

using CefSharp;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using NetFwTypeLib;

namespace StocktalkPC
{
    /// <summary>
    /// MainWindow.xaml에 대한 상호 작용 논리
    /// </summary>
    public partial class MainWindow : Window
    {
        public MainWindow()
        {

            var settings = new CefSharp.CefSettings
            {
            };
            settings.CefCommandLineArgs.Add("disable-gpu", "1");
            Cef.Initialize(settings);

            InitializeComponent();
        }
    }
}
  

MainWindow.xaml

<Window x:Class="StocktalkPC.MainWindow"
       xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:local="clr-namespace:StocktalkPC"
        xmlns:cefSharp="clr-namespace:CefSharp.Wpf;assembly=CefSharp.Wpf"
        mc:Ignorable="d"
        Title="MainWindow" Height="700" Width="1260">
    <Grid>
        <cefSharp:ChromiumWebBrowser Grid.Row="0"
        Address="http://pc.dev.stocktalk.kr:30802/webchat" />
    </Grid>
</Window>

1 个答案:

答案 0 :(得分:0)

这是地址问题。我添加了ti主机作为该域,但它不是真正的域。