mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-14 21:53:35 +03:00
15 lines
298 B
C#
15 lines
298 B
C#
namespace webview2;
|
|
|
|
public partial class Form1 : Form
|
|
{
|
|
public Form1()
|
|
{
|
|
InitializeComponent();
|
|
this.webView.CoreWebView2InitializationCompleted += (_, e) =>
|
|
{
|
|
if (e.IsSuccess)
|
|
Console.WriteLine("WebView2 initialized");
|
|
};
|
|
}
|
|
}
|