playwright/tests/webview2/webview2-app/Form1.cs
2022-09-07 20:09:22 +02:00

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");
};
}
}