在C#中可以通過WebBrowser控件的Print()方法來實現網頁打印功能。以下是一個示例代碼:
using System;
using System.Windows.Forms;
namespace WebBrowserPrintExample
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
webBrowser1.Navigate("https://www.example.com");
}
private void printButton_Click(object sender, EventArgs e)
{
webBrowser1.Print();
}
}
}
在上述示例中,首先在窗體中放置一個WebBrowser控件和一個按鈕控件,然后在窗體加載事件中使用Navigate方法加載網頁。當用戶點擊按鈕時,調用Print方法實現網頁打印功能。