CefSharp LoadHtml

后端 未结 3 2008
北恋
北恋 2021-01-01 17:52

Could someone explain to me how the CefSharp LoadHtml function works?

LoadHtml(string html, string url)

What do the html

3条回答
  •  情歌与酒
    2021-01-01 18:15

    For a WPF project, try the following.

    Create a namespace reference to CefSharp.Wpf in the xaml.

    xmlns:cef="clr-namespace:CefSharp.Wpf;assembly=CefSharp.Wpf"

    Add the ChromiumWebBrowser element to your window.

    
    

    Remember to assign a name to the element (in this case the element is called browser). We will use it to call the LoadHtml method later on.

    Create an event handler for the IsBrowserInitializedChanged event. This is important, because this event will be fired once the ChromiumWebBrowser control is ready. Then can we load html.

    Putting it all together...

    MainWindow.xaml

    
        
            
        
    
    

    MainWindow.xaml.cs

    using System.Windows;
    
    namespace CEF
    {
        public partial class MainWindow : Window
        {
            public MainWindow()
            {
                InitializeComponent();
            }
    
            private void browser_IsBrowserInitializedChanged(object sender, DependencyPropertyChangedEventArgs e)
            {
                // the browser control is initialized, now load the html
    
                browser.LoadHtml("

    Hello, World!

    ", "http://www.example.com/"); } } }

提交回复
热议问题