在C#中可以通過WebBrowser控件的Print()方法來實(shí)現(xiàn)網(wǎng)頁打印功能。以下是一個(gè)示例代碼:
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();
}
}
}
在上述示例中,首先在窗體中放置一個(gè)WebBrowser控件和一個(gè)按鈕控件,然后在窗體加載事件中使用Navigate方法加載網(wǎng)頁。當(dāng)用戶點(diǎn)擊按鈕時(shí),調(diào)用Print方法實(shí)現(xiàn)網(wǎng)頁打印功能。