-
-
Save kypflug/ff50b3d10de389c2cd559b4b073d86c0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Microsoft.Toolkit.Win32.UI.Controls.WPF; | |
public partial class MainWindow : Window | |
{ | |
public MainWindow() | |
{ | |
InitializeComponent(); | |
// Initialize a WPF WebView and add it to the Window's Grid | |
var wvc = new WebView(); | |
Grid.Children.Add(wvc); | |
wvc.Navigate(new Uri("https://www.microsoft.com")); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment