Cefsharp.WPF.NET Core(開發者的工作原理)
開發人員現在可以輕鬆將Chromium強大的網頁瀏覽器引擎整合到他們的.NET桌面應用程式和WPF應用程式中,使用CefSharp這個創新的.NET包裝器來包裝Chromium嵌入式框架。 CefSharp為.NET應用程式開發人員提供了自訂桌面介面中豐富的網頁體驗,使他們能夠利用Chromium的網路功能和開發者工具,而不需任何外部依賴。 透過提供廣泛的新功能,例如自訂選項和瀏覽器行為控制,這個框架使得整合當代網路技術,如HTML5、CSS3和JavaScript變得更加容易。
CefSharp的跨平台互操作性和網頁內容互動功能讓桌面解決方案中使用者的互動和體驗得以轉變,提升了桌面程式,並在應用程式環境中實現動態網頁瀏覽體驗。 在本文中,我們將透過程式碼片段了解更多關於CefSharp的開源版本。
如何使用CefSharp
- 從Visual Studio專案中建立一個新的Windows表單。
- 安裝程式庫CefSharp。
- 聲明準備編譯所需的CefSharp物件。
- 輸入需要載入的URL。
- 運行程式碼。
安裝CefSharp.WinForms:
- 利用Visual Studio的NuGet套件管理器是安裝CefSharp的最簡單方法。
- 在Visual Studio中啟動專案。
- 在解決方案資源管理器中右鍵點擊您的專案。
- 選擇"管理NuGet套件"。
- 前往"瀏覽"選項卡並搜尋"CefSharp"。
- 選擇適合您的專案的CefSharp包(CefSharp.Wpf,CefSharp.WinForms等)。
- 點擊"安裝"將包包含到您的專案中。
CefSharp的重要性
CefSharp是一個框架,透過無縫整合Chromium強大的網頁瀏覽器引擎到.NET應用程式中,轉變開發人員建構桌面應用和自動化專案的方式。 藉由CefSharp的幫助,我們可以顯示遠端網頁內容,包括支援HTML5的嵌入式UI。
在CefSharp介紹中需強調的重要內容有:
- Chromium Embedded Framework (CEF)作為CefSharp的框架,允許將Chromium瀏覽器的功能整合到其他程式中。 使用谷歌的Chromium專案,CefSharp為桌面程式增添了複雜的網路功能。
- .NET整合:CefSharp是Cef的一個強大的.NET包裝器。 它使程式員能夠輕鬆使用C#或其他.NET語言將快速的網頁瀏覽器整合到桌面.NET應用程式中。
- 桌面應用的瀏覽:使用CefSharp,開發人員可以輕鬆地將網頁瀏覽功能整合到桌面程式中。 此功能為開發人員提供了諸多可能性,使他們能夠在使用者介面中整合在線資料或製作具網頁功能的獨特桌面應用程式。 它可以在JavaScript事件觸發時收到回呼。
- 支持豐富的網路技術:使用CefSharp,開發人員可以利用Chromium提供的所有功能,包括支援最新的網頁標準,如HTML5、CSS3、JavaScript、WebGL及其他現代網頁標準。 這使得在桌面程式中包含先進的網路技術成為可能。
- 靈活性和自訂:CefSharp為開發人員提供了極大的靈活性和自訂選擇,允許他們處理事件,執行JavaScript,與線上內容互動,並根據特定應用需求修改瀏覽器行為。 CefSharp使用WebGL,利用OpenGL/DirectX實現硬體加速渲染,支持3D內容。
透過使用CefSharp,開發人員可以改進桌面應用程式,提供網路瀏覽體驗,鼓勵使用者互動,並在應用程式環境中為使用者提供豐富的當代資訊。
範例程式碼:
using System;
using System.Windows.Forms;
using CefSharp;
using CefSharp.WinForms;
namespace CefSharpExample
{
public partial class MainForm : Form
{
private ChromiumWebBrowser chromeBrowser;
public MainForm()
{
InitializeComponent();
// Initialize CefSharp settings
CefSettings settings = new CefSettings();
Cef.Initialize(settings);
// Create the ChromiumWebBrowser instance
chromeBrowser = new ChromiumWebBrowser("https://ironpdf.com/"); // Load a URL
// Add the ChromiumWebBrowser control to the form
this.Controls.Add(chromeBrowser);
chromeBrowser.Dock = DockStyle.Fill; // Fill the entire form
// Handle when the browser component has finished loading
chromeBrowser.LoadingStateChanged += ChromeBrowser_LoadingStateChanged;
}
private void ChromeBrowser_LoadingStateChanged(object sender, LoadingStateChangedEventArgs e)
{
if (!e.IsLoading)
{
// Page has finished loading
// Perform actions after the page has loaded
Console.WriteLine("Finished loading.");
}
}
// Dispose of Cef resources when the form is closed
private void MainForm_FormClosing(object sender, FormClosingEventArgs e)
{
Cef.Shutdown();
}
}
}
using System;
using System.Windows.Forms;
using CefSharp;
using CefSharp.WinForms;
namespace CefSharpExample
{
public partial class MainForm : Form
{
private ChromiumWebBrowser chromeBrowser;
public MainForm()
{
InitializeComponent();
// Initialize CefSharp settings
CefSettings settings = new CefSettings();
Cef.Initialize(settings);
// Create the ChromiumWebBrowser instance
chromeBrowser = new ChromiumWebBrowser("https://ironpdf.com/"); // Load a URL
// Add the ChromiumWebBrowser control to the form
this.Controls.Add(chromeBrowser);
chromeBrowser.Dock = DockStyle.Fill; // Fill the entire form
// Handle when the browser component has finished loading
chromeBrowser.LoadingStateChanged += ChromeBrowser_LoadingStateChanged;
}
private void ChromeBrowser_LoadingStateChanged(object sender, LoadingStateChangedEventArgs e)
{
if (!e.IsLoading)
{
// Page has finished loading
// Perform actions after the page has loaded
Console.WriteLine("Finished loading.");
}
}
// Dispose of Cef resources when the form is closed
private void MainForm_FormClosing(object sender, FormClosingEventArgs e)
{
Cef.Shutdown();
}
}
}
Imports System
Imports System.Windows.Forms
Imports CefSharp
Imports CefSharp.WinForms
Namespace CefSharpExample
Partial Public Class MainForm
Inherits Form
Private chromeBrowser As ChromiumWebBrowser
Public Sub New()
InitializeComponent()
' Initialize CefSharp settings
Dim settings As New CefSettings()
Cef.Initialize(settings)
' Create the ChromiumWebBrowser instance
chromeBrowser = New ChromiumWebBrowser("https://ironpdf.com/") ' Load a URL
' Add the ChromiumWebBrowser control to the form
Me.Controls.Add(chromeBrowser)
chromeBrowser.Dock = DockStyle.Fill ' Fill the entire form
' Handle when the browser component has finished loading
AddHandler chromeBrowser.LoadingStateChanged, AddressOf ChromeBrowser_LoadingStateChanged
End Sub
Private Sub ChromeBrowser_LoadingStateChanged(ByVal sender As Object, ByVal e As LoadingStateChangedEventArgs)
If Not e.IsLoading Then
' Page has finished loading
' Perform actions after the page has loaded
Console.WriteLine("Finished loading.")
End If
End Sub
' Dispose of Cef resources when the form is closed
Private Sub MainForm_FormClosing(ByVal sender As Object, ByVal e As FormClosingEventArgs)
Cef.Shutdown()
End Sub
End Class
End Namespace
此程式碼使用CefSharp開發了一個基於Chromium的簡單WinForms應用程式,嵌入了網頁瀏覽器。 以下是說明:
- 使用
CefSettings初始化CefSharp設置。 - ChromiumWebBrowser:此類表示CefSharp提供的網頁瀏覽器控制。
LoadingStateChanged事件處理瀏覽器的載入狀態變化,例如頁面載入完成時。MainForm_FormClosing事件確保在窗體關閉時Cef資源得到正確關閉。
對於一個準備編譯的基本範例,基於CefSharp的應用程式,請參考GitHub上的Minimal Example Project。 更複雜的範例專案可在專案的來源中獲得。
CefSharp和IronPDF
將IronPDF的PDF生成功能與CefSharp的ChromiumEmbedded Framework (CEF)瀏覽器整合需要在.NET應用程式中同時使用CefSharp和IronPDF。 然而,截至2022年1月的最新版本,CefSharp和IronPDF之間尚無直接開箱即用的介面。
CefSharp的主要目標是將Chromium網頁瀏覽器引擎整合到.NET程式中,允許透過應用程式的使用者介面顯示並與網路內容交互。 CefSharp為WPF和Windows表單應用程式提供瀏覽器控制。
儘管CefSharp和IronPDF尚未直接整合,但是開發人員仍然可以在相同的應用程式上下文中使用這兩個程式庫。
IronPDF在HTML到PDF轉換方面表現出色,確保精確保留原始設計和樣式。 它非常適合從基於網路的內容如報告、發票和文件中建立PDF。 IronPDF支持HTML文件、URLs和原始HTML字串,輕鬆生成高品質的PDF文件。
using IronPdf;
class Program
{
static void Main(string[] args)
{
var renderer = new ChromePdfRenderer();
// 1. Convert HTML String to PDF
var htmlContent = "<h1>Hello, IronPDF!</h1><p>This is a PDF from an HTML string.</p>";
var pdfFromHtmlString = renderer.RenderHtmlAsPdf(htmlContent);
pdfFromHtmlString.SaveAs("HTMLStringToPDF.pdf");
// 2. Convert HTML File to PDF
var htmlFilePath = "path_to_your_html_file.html"; // Specify the path to your HTML file
var pdfFromHtmlFile = renderer.RenderHtmlFileAsPdf(htmlFilePath);
pdfFromHtmlFile.SaveAs("HTMLFileToPDF.pdf");
// 3. Convert URL to PDF
var url = "http://ironpdf.com"; // Specify the URL
var pdfFromUrl = renderer.RenderUrlAsPdf(url);
pdfFromUrl.SaveAs("URLToPDF.pdf");
}
}
using IronPdf;
class Program
{
static void Main(string[] args)
{
var renderer = new ChromePdfRenderer();
// 1. Convert HTML String to PDF
var htmlContent = "<h1>Hello, IronPDF!</h1><p>This is a PDF from an HTML string.</p>";
var pdfFromHtmlString = renderer.RenderHtmlAsPdf(htmlContent);
pdfFromHtmlString.SaveAs("HTMLStringToPDF.pdf");
// 2. Convert HTML File to PDF
var htmlFilePath = "path_to_your_html_file.html"; // Specify the path to your HTML file
var pdfFromHtmlFile = renderer.RenderHtmlFileAsPdf(htmlFilePath);
pdfFromHtmlFile.SaveAs("HTMLFileToPDF.pdf");
// 3. Convert URL to PDF
var url = "http://ironpdf.com"; // Specify the URL
var pdfFromUrl = renderer.RenderUrlAsPdf(url);
pdfFromUrl.SaveAs("URLToPDF.pdf");
}
}
Imports IronPdf
Friend Class Program
Shared Sub Main(ByVal args() As String)
Dim renderer = New ChromePdfRenderer()
' 1. Convert HTML String to PDF
Dim htmlContent = "<h1>Hello, IronPDF!</h1><p>This is a PDF from an HTML string.</p>"
Dim pdfFromHtmlString = renderer.RenderHtmlAsPdf(htmlContent)
pdfFromHtmlString.SaveAs("HTMLStringToPDF.pdf")
' 2. Convert HTML File to PDF
Dim htmlFilePath = "path_to_your_html_file.html" ' Specify the path to your HTML file
Dim pdfFromHtmlFile = renderer.RenderHtmlFileAsPdf(htmlFilePath)
pdfFromHtmlFile.SaveAs("HTMLFileToPDF.pdf")
' 3. Convert URL to PDF
Dim url = "http://ironpdf.com" ' Specify the URL
Dim pdfFromUrl = renderer.RenderUrlAsPdf(url)
pdfFromUrl.SaveAs("URLToPDF.pdf")
End Sub
End Class
安裝IronPDF
要獲得IronPDF程式庫,您需要遵循以下步驟。 在套件管理器中輸入以下程式碼:
:ProductInstall
:ProductInstall

或者,您可以使用NuGet套件管理器搜尋包"IronPDF"。 從所有與IronPDF相關的NuGet包列表中選擇並下載所需包。

Using IronPDF in CefSharp C
要在C#應用中將IronPDF與CefSharp整合,您需要執行兩個步驟:使用CefSharp提供的基於Chromium的瀏覽器渲染HTML內容,然後使用IronPDF將該HTML資訊轉換為PDF文件。 以下範例展示如何完成此整合:
using CefSharp;
using IronPdf;
using System;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace CefSharpIronPdfIntegration
{
public partial class MainForm : Form
{
private ChromiumWebBrowser chromeBrowser;
public MainForm()
{
InitializeComponent();
// Initialize CefSharp
CefSettings settings = new CefSettings();
Cef.Initialize(settings);
// Create the ChromiumWebBrowser instance
chromeBrowser = new ChromiumWebBrowser("https://ironpdf.com/"); // Load a URL
// Add the ChromiumWebBrowser control to the form
this.Controls.Add(chromeBrowser);
chromeBrowser.Dock = DockStyle.Fill; // Fill the entire form
// Handle when the browser component has finished loading
chromeBrowser.LoadingStateChanged += ChromeBrowser_LoadingStateChanged;
}
private async void ChromeBrowser_LoadingStateChanged(object sender, LoadingStateChangedEventArgs e)
{
if (!e.IsLoading)
{
// Page has finished loading
// Capture HTML content after page load completes
string htmlContent = await chromeBrowser.GetSourceAsync();
// Use IronPDF to generate a PDF from the captured HTML content
var Renderer = new IronPdf.HtmlToPdf();
var PDF = Renderer.RenderHtmlAsPdf(htmlContent);
PDF.SaveAs("Output.pdf"); // Save the generated PDF
Console.WriteLine("PDF generated successfully.");
}
}
// Dispose of Cef resources when the form is closed to avoid unnecessary memory usage
private void MainForm_FormClosing(object sender, FormClosingEventArgs e)
{
Cef.Shutdown();
}
}
}
using CefSharp;
using IronPdf;
using System;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace CefSharpIronPdfIntegration
{
public partial class MainForm : Form
{
private ChromiumWebBrowser chromeBrowser;
public MainForm()
{
InitializeComponent();
// Initialize CefSharp
CefSettings settings = new CefSettings();
Cef.Initialize(settings);
// Create the ChromiumWebBrowser instance
chromeBrowser = new ChromiumWebBrowser("https://ironpdf.com/"); // Load a URL
// Add the ChromiumWebBrowser control to the form
this.Controls.Add(chromeBrowser);
chromeBrowser.Dock = DockStyle.Fill; // Fill the entire form
// Handle when the browser component has finished loading
chromeBrowser.LoadingStateChanged += ChromeBrowser_LoadingStateChanged;
}
private async void ChromeBrowser_LoadingStateChanged(object sender, LoadingStateChangedEventArgs e)
{
if (!e.IsLoading)
{
// Page has finished loading
// Capture HTML content after page load completes
string htmlContent = await chromeBrowser.GetSourceAsync();
// Use IronPDF to generate a PDF from the captured HTML content
var Renderer = new IronPdf.HtmlToPdf();
var PDF = Renderer.RenderHtmlAsPdf(htmlContent);
PDF.SaveAs("Output.pdf"); // Save the generated PDF
Console.WriteLine("PDF generated successfully.");
}
}
// Dispose of Cef resources when the form is closed to avoid unnecessary memory usage
private void MainForm_FormClosing(object sender, FormClosingEventArgs e)
{
Cef.Shutdown();
}
}
}
Imports CefSharp
Imports IronPdf
Imports System
Imports System.Threading.Tasks
Imports System.Windows.Forms
Namespace CefSharpIronPdfIntegration
Partial Public Class MainForm
Inherits Form
Private chromeBrowser As ChromiumWebBrowser
Public Sub New()
InitializeComponent()
' Initialize CefSharp
Dim settings As New CefSettings()
Cef.Initialize(settings)
' Create the ChromiumWebBrowser instance
chromeBrowser = New ChromiumWebBrowser("https://ironpdf.com/") ' Load a URL
' Add the ChromiumWebBrowser control to the form
Me.Controls.Add(chromeBrowser)
chromeBrowser.Dock = DockStyle.Fill ' Fill the entire form
' Handle when the browser component has finished loading
AddHandler chromeBrowser.LoadingStateChanged, AddressOf ChromeBrowser_LoadingStateChanged
End Sub
Private Async Sub ChromeBrowser_LoadingStateChanged(ByVal sender As Object, ByVal e As LoadingStateChangedEventArgs)
If Not e.IsLoading Then
' Page has finished loading
' Capture HTML content after page load completes
Dim htmlContent As String = Await chromeBrowser.GetSourceAsync()
' Use IronPDF to generate a PDF from the captured HTML content
Dim Renderer = New IronPdf.HtmlToPdf()
Dim PDF = Renderer.RenderHtmlAsPdf(htmlContent)
PDF.SaveAs("Output.pdf") ' Save the generated PDF
Console.WriteLine("PDF generated successfully.")
End If
End Sub
' Dispose of Cef resources when the form is closed to avoid unnecessary memory usage
Private Sub MainForm_FormClosing(ByVal sender As Object, ByVal e As FormClosingEventArgs)
Cef.Shutdown()
End Sub
End Class
End Namespace
此程式碼展示了簡單的整合,捕獲載入於Chromium瀏覽器中的HTML內容,並使用IronPDF將其轉換為PDF文件。 以下是說明:
- 初始化CefSharp以將Chromium瀏覽器整合到Windows表單應用中。
https://ironpdf.com/")載入到瀏覽器中並建立其實例。LoadingStateChanged事件:跟蹤瀏覽器的載入進度。 當頁面載入完成(GetSourceAsync()異步捕獲載入頁面的HTML內容。- IronPDF整合:捕獲的HTML內容(
htmlContent)通過IronPDF的HtmlToPdf功能轉換為PDF文件。 生成的PDF保存為"Output.pdf"。 - 窗體關閉:確保在窗體關閉後通過調用
Cef.Shutdown()正確關閉Cef資源。

此程式碼展示了簡單的整合,捕獲載入於Chromium瀏覽器中的HTML內容,然後使用IronPDF將其轉換為PDF文件。 根據應用程式的特定需求自訂URL、錯誤處理以及其他方面。 有關IronPDF文件的更多資訊,請參考IronPDF NuGet Package。
結論
IronPDF和CefSharp於C#應用中的整合為管理文件和線上資訊開啟了新的可能性。 通過結合IronPDF的PDF生成功能與CefSharp提供的基於Chromium的瀏覽器,開發人員可以建立靈活的應用程式,可以生成高品質的PDF文件,同時整合動態網頁內容。
IronPDF的Lite包適用於$999,包括一年軟體維護合約、升級選項、永久授權,以及三十天退款保證。 在三十天試用期內,使用者可以在實際情境中評估帶水印的試用版本的產品。 要了解IronPDF的成本、授權及免費版本,請造訪IronPDF Licensing Information。 如需了解更多關於Iron Software的資訊,請造訪他們的Iron Software網站。
常見問題
如何將基於Chromium的網頁瀏覽器整合到我的.NET桌面應用程式中?
您可以使用CefSharp,這是一個基於Chromium嵌入框架的.NET包裝器,輕鬆將基於Chromium的網頁瀏覽器整合到您的.NET桌面應用程式中。這讓您可以利用現代網頁技術,例如HTML5、CSS3和JavaScript。
在WPF應用程式中設置CefSharp涉及哪些步驟?
要在WPF應用程式中設置CefSharp,首先在Visual Studio中建立一個新專案。使用NuGet套件管理器安裝CefSharp.Wpf套件,然後配置必要的設定以將Chromium瀏覽器嵌入到您的應用程式中。
如何將Chromium瀏覽器中渲染的HTML內容轉換成PDF文件?
要將Chromium瀏覽器中渲染的HTML內容轉換為PDF,可以首先使用CefSharp渲染HTML,然後使用IronPDF的HtmlToPdf功能生成PDF文件。
CefSharp可以在.NET應用程式中與PDF生成工具一起使用嗎?
是的,CefSharp可以在.NET應用程式中與IronPDF等PDF生成工具一起使用。雖然沒有直接的整合,您可以同時使用兩者來渲染HTML內容並將其轉換為PDF。
將CefSharp整合到.NET應用程式中有什麼好處?
將CefSharp整合到.NET應用程式中提供了許多好處,例如能夠直接在桌面應用程式中顯示和交互現代網頁內容。它還允許開發者自定義瀏覽器行為並使用如HTML5、CSS3和JavaScript這類網站絡技術。
我如何處理CefSharp與.NET應用程式整合時出現的問題?
處理CefSharp整合問題時,確保所有NuGet套件正確安裝、檢查與.NET版本的相容性、並確認Visual Studio專案中的配置設定。
是否可以在.NET應用程式中自定義Chromium瀏覽器的行為?
是的,CefSharp允許開發者自定義整合到.NET應用程式中的Chromium瀏覽器行為,提供對瀏覽器設定的控制以及通過自定義程式碼擴充功能的能力。
哪些專案受益於同時使用CefSharp和IronPDF?
需要顯示動態網頁內容並直接從該內容生成PDF報告或文件的專案可從同時使用CefSharp和IronPDF中受益。這種組合對於需要強大文件管理和網頁內容渲染能力的應用程式是理想的選擇。




