Click here to Skip to main content
15,867,453 members
Articles / Web Development / HTML

Display HTML in WPF and CefSharp Tutorial Part 2

,
Rate me:
Please Sign up or sign in to vote.
5.00/5 (9 votes)
9 Apr 2015MIT5 min read 62.1K   9   3
How to implement a ResourceHandler in CefSharp to display custom HTML in WPF

Source code downloads from GutHub:

Introduction

This article continues a series that started with a previous article, which explains what CefSharp is and how it can be used to display HTML documents in WPF [1]. This part of the tutorial is focused on the ResourceHandler [2] in CefSharp. A ResourceHandler is one way to handle network requests.

Background

Sample Applications of the ResourceHandler in CefSharp

A ResourceHandler is useful for displaying static HTML. At time of writing ResourceHandler's are executed in a Sync fashion so should be used sparingly for network requests as they are blocking. An area of application for this scenario is for example an about page that could appear when the user enters the string "about" in the URL section of your browser application.

But an about page is certainly not the limit. Another interesting area of application for the ResourceHandler interface in CefSharp is a viewer application that translates the content of a file (eg.: MarkDown) into HTML for viewing purposes. There are also other use cases like implementing a Control Panel page as it can be found in Windows. But a use case like this is not covered here and it could also be more adventegious to implement this with a ShemeHandler as we will explain in the next article of this series.

Using the code

Sample 2 About ResourceHandler Demo Project

The Sample 2 About ResourceHandler project demos the simple case in which we want to associate a URL with a static content that is known at implementation time. The application shows an About page when it starts up and allows to load pages linked from that page. There is also a separate "Test URL 2" page which can be loaded through a mouse click.

Image 1

Here is the XAML code that drives the application in the MainWindow.xaml file:

XML
<Grid>
  <Grid.RowDefinitions>
    <RowDefinition Height="Auto" />
    <RowDefinition Height="*" />
    <RowDefinition Height="Auto" />
  </Grid.RowDefinitions>

  <Grid Grid.Row="0">
    <Grid.Resources>
      <conv:InverseBooleanConverter x:Key="InverseConv" />
    </Grid.Resources>
    <Grid.ColumnDefinitions>
      <ColumnDefinition Width="Auto" />
      <ColumnDefinition Width="Auto" />
      <ColumnDefinition Width="Auto" />
    </Grid.ColumnDefinitions>

    <Button Content="About"
      Command="{Binding TestUrlCommand}"
      IsEnabled="{Binding ElementName=browser, Path=IsLoading, Converter={StaticResource InverseConv}}"/>

    <Button Content="MarkDown" Grid.Column="1"
       Command="{Binding TestUrl1Command}"
       CommandParameter="{Binding ElementName=browser}"
       IsEnabled="{Binding ElementName=browser, Path=IsLoading, Converter={StaticResource InverseConv}}"/>

    <Button Content="Dev Tools" Grid.Column="2"
       Command="{Binding DevToolsCommand}"
       CommandParameter="{Binding ElementName=browser}"
       IsEnabled="{Binding ElementName=browser, Path=IsLoading, Converter={StaticResource InverseConv}}"/>
  </Grid>

  <cefSharp:ChromiumWebBrowser Grid.Row="1"
     Address="{Binding BrowserAddress, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"
     Title="{Binding BrowserTitle, Mode=OneWay, UpdateSourceTrigger=PropertyChanged}"
     Name="browser" />

  <StatusBar Grid.Row="2" >
     <TextBlock Name="Status" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" />
   </StatusBar>
</Grid>

We can see that the MainWindow consists of 3 parts:

  • The list of buttons at the top,
  • the CefSharp browser control named browser in the middle, and
  • the StatusBar which shows some information on whether a page is currently loaded or done loading.

Lets see how the buttons at the top work.

The MainWindows.xaml code is bound to a viewModel class named AppViewModel stored in "KnowledgeBase/ViewModels/AppViewModel.cs". This viewmodel provides 2 command properties called TestUrlCommand and TestUrl1Command. The first command is invoked when the "About" button is clicked and the second command is invoked when the when the "Test URL 2" button is clicked.

Each of the above commands do not do much more than setting the BrowserAddress property of the AppViewModel class:

C#
BrowserAddress = TestResourceUrl;
C#
BrowserAddress = TestUnicodeResourceUrl;

This property in turn is bound to the CefSharp web browser control as we have seen in the MainWindow.xaml listing. So, how come CefSharp knows what each URL means and why does it actually display custom HTML for these? The answer to that question is hidden in the MainWindow constructor where the AppViewModel.RegisterTestResources(browser); method is called with the ChromiumWebBrowser instance as parameter:

C#
public MainWindow()
{
  InitializeComponent();
  
  AppViewModel.RegisterTestResources(browser);
  
  DataContext = new AppViewModel();
  
  browser.StatusMessage += BrowserStatusMessage;
  browser.NavStateChanged += BrowserNavStateChanged;
}

The code implemented to register each ResourceHandlers is fairly simple:

C#
public static void RegisterTestResources(IWebBrowser browser)
{
  var factory = browser.ResourceHandlerFactory;

  if (factory != null)
  {
    const string responseBody =
    "<html><body><h1>About</h1>"
    ...
    + "</body></html>";

    factory.RegisterHandler(TestResourceUrl, ResourceHandler.FromString(responseBody));

    const string unicodeResponseBody = "<html><body>整体满意度</body></html>";
    factory.RegisterHandler(TestUnicodeResourceUrl, ResourceHandler.FromString(unicodeResponseBody));
  }
}

The code takes a URL (defined in TestResourceUrl or TestUnicodeResourceUrl) and associates it with HTML content defined in a string (responseBody or unicodeResponseBody). So, whenever the IWebBrowser control (which is effectively the ChromiumWebBrowser instance from MainWindow.xaml) is requested to load either URL, it implements this by loading the above pre-defined HTML string.

Sample 2 MarkDown ResourceHandler

The Sample2 folder also contains a Sample 2 MarkDown ResourceHandler application which can be used to view MarkDown content in a WPF application. This sample application contains a copy of the MarkDown converter project [3]. Here is a screenshot of the content that is displayed when the user clicks the MarkDown button:

Image 2

This does not really look too interesting, its just plain HTML after all, but this HTML is based on the MarkDown syntax which is much more simple to edit than HTML. The actual source of the content is stored in the KnowledgeBase/SampleData/Readme.md file of this sample application.

The sample application works very similar to the About sample application discussed above. But it is slightly different in some corners and places. This application starts up through a App.xaml.cs startup method configured in App.xaml:

C#
private void Application_Startup(object sender, StartupEventArgs e)
{
  var mainWindow = new MainWindow();
  var viewModel = new AppViewModel();

  viewModel.RegisterTestResources(mainWindow.browser);

  mainWindow.DataContext = viewModel;

  mainWindow.Show();
}

This RegisterTestResources method in the AppViewModel class loads a sample markdown text from the Readme.md file stored in the SampleData sub-folder of the KnowledgeBase project:. This application works very similar to the about sample application discussed above, except, the application can generate semi static content based on the Readme.md file stored in the file system (in the bin/Debug or bin/Release folder).

The sample application also implements a kind of refresh functionality. You can actually edit and save the Readme.md file at run-time and click the MarkDown button to see the results of your edits in the sample application's window.

The important code parts to understand this refresh function are the following lines:

RegisterMarkdownTestResources(browser);

BrowserAddress = TestMarkDown2HTMLConversion;

inside the TestUrl1Command property. This command is executed when the user clicks on the Markup. The first line relaods the MarkDown file, converts it into HTML and stores it in a string, and re-registers the new content. The second line changes the current address to tell the browser about the new request.

Remarks

Be sure to review the BrowserNavStateChanged(object sender, NavStateChangedEventArgs e) and BrowserStatusMessage(object sender, StatusMessageEventArgs e) methods in MainWindow.xaml.cs to understand how the StatusBar and title section of the MainWindow is updated.

Ir is worth pointing out that the sample application extends the http address scheme. The ResourceHandler in CefSharp could also be used with a custom URI, eg: about, but this requires a custom SchemeHandler as we will explain in the next article of this series.

 

The sample also contains a Dev Tools button and command section in the AppViewModel class:
Image 3

This Chrome development tool can be used to verify and debug the state of the HTML, Javascript, or CSS styles loaded in the application. Just hover the mouse over a section, for example h1 as in the above screenshot, and see the corresponding highlighting in the application's main window.

References

License

This article, along with any associated source code and files, is licensed under The MIT License


Written By
Germany Germany
The Windows Presentation Foundation (WPF) and C# are among my favorites and so I developed Edi

and a few other projects on GitHub. I am normally an algorithms and structure type but WPF has such interesting UI sides that I cannot help myself but get into it.

https://de.linkedin.com/in/dirkbahle

Written By
Australia Australia
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
Questionviewing youtube videos in multitabs scenario Pin
6_x_720-Aug-15 8:48
6_x_720-Aug-15 8:48 
AnswerRe: viewing youtube videos in multitabs scenario Pin
Dirk Bahle20-Aug-15 9:45
Dirk Bahle20-Aug-15 9:45 
GeneralRe: viewing youtube videos in multitabs scenario Pin
Alex Maitland20-Aug-15 10:56
Alex Maitland20-Aug-15 10:56 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.