Skip to content

Instantly share code, notes, and snippets.

@kypflug
Created May 9, 2018 16:59
Show Gist options
  • Save kypflug/ff50b3d10de389c2cd559b4b073d86c0 to your computer and use it in GitHub Desktop.
Save kypflug/ff50b3d10de389c2cd559b4b073d86c0 to your computer and use it in GitHub Desktop.
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