webView21 = new Microsoft.Web.WebView2.WinForms.WebView2();
((System.ComponentModel.ISupportInitialize)webView21).BeginInit();
SuspendLayout();
//
// webView21
//
webView21.AllowExternalDrop = true;
webView21.BackColor = SystemColors.Control;
webView21.CreationProperties = null;
webView21.DefaultBackgroundColor = Color.White;
webView21.Location = new Point(12, 12);
webView21.Name = "webView21";
webView21.Size = new Size(776, 426);
webView21.Source = new Uri("https://google.com", UriKind.Absolute);
webView21.TabIndex = 0;
webView21.ZoomFactor = 1D;
//
// test
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(800, 450);
Controls.Add(webView21);
Name = "test";
Text = "test";
Load += test_Load;
((System.ComponentModel.ISupportInitialize)webView21).EndInit();
ResumeLayout(false);