how to make web browser in c# visual studio 2022 (urgent)
_ ati
111
Reputation points
please tell me the whole code to make a web browser
Developer technologies | Windows Presentation Foundation
Developer technologies | Windows Presentation Foundation
A part of the .NET Framework that provides a unified programming model for building line-of-business desktop applications on Windows.
2 answers
Sort by: Most helpful
-
-
Hui Liu-MSFT 48,711 Reputation points Microsoft External Staff
2022-08-11T07:44:02.44+00:00 Hi,@_ ati . I tested the linked projects
WPFSample.slnandWinForms_GettingStarted.slnin Visual Studio 2019 and Visual Studio 2022.
WPFSample.slnworks fine.
Forms_GettingStarted.slnworks fine in Visual Studio2022.
Forms_GettingStarted.slnreproduced your problem in Visual Studio2019, I updated the code sequence as follows, the project works fine.this.Name = "Form1"; this.Text = "Form1"; this.Load += new System.EventHandler(this.Form1_Load); this.ResumeLayout(false); this.PerformLayout(); this.Controls.Add(this.goButton); this.Controls.Add(this.addressBar); this.Controls.Add(this.webView);
