1. <Window x:Class="WpfApp1.MainWindow"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:cefSharp="clr-namespace:CefSharp.Wpf;assembly=CefSharp.Wpf"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  7. xmlns:local="clr-namespace:WpfApp1"
  8. mc:Ignorable="d"
  9. Title="MainWindow" Height="350" Width="525">
  10. <Grid>
  11. <cefSharp:ChromiumWebBrowser x:Name="Browser1" Grid.Row="0" Address="https://youtube.com" />
  12. </Grid>
  13. </Window>