mirror of
				https://github.com/microsoft/playwright.git
				synced 2025-06-26 21:40:17 +00: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"); | ||
|  |         }; | ||
|  |     } | ||
|  | } |