I have a WebView2 control in my WinForm .NET Framework 4.7.2, how can i load inside it my local html file?
I was trying to set the .Source with file:// extention but nothing...
Here is what i've tryed:
private void Form1_Load(object sender, EventArgs e)
{
webView.Source = new Uri("file://C:/Users/xxx/Desktop/VisualSelf/self.html");
}