diff --git a/SampleApps/WebView2WpfCompositionControl/README.md b/SampleApps/WebView2WpfCompositionControl/README.md
new file mode 100644
index 0000000..06259d9
--- /dev/null
+++ b/SampleApps/WebView2WpfCompositionControl/README.md
@@ -0,0 +1,29 @@
+---
+description: "Demonstrates the features and usage patterns of WebView2CompositionControl in a WPF app."
+extendedZipContent:
+ -
+ path: SharedContent
+ target: SharedContent
+ -
+ path: LICENSE
+ target: LICENSE
+languages:
+ - cpp
+page_type: sample
+products:
+ - microsoft-edge
+---
+# WebView2WpfCompositionControl sample app
+
+
+
+
+This sample, **WebView2WpfCompositionControl**, embeds a WPF WebView2CompositionControl within a .NET Core 3.0 and/or .NET 8 WPF application. The WebView2CompositionControl solves the WPF "Airspace" issue (where all WPF content showed up below the WebView2 in the regular WPF control) by using D3D11 graphics capture session to show and interact with WebView2 content in a regular WPF WebView2 control. In general, the WebView2CompositionControl can be used as a stand-in replacement for the regular WPF WebView2 control.
+
+
+This sample is built as a WPF .NET Core application in Visual Studio 2022.
+
+
+This is the main WebView2 sample. The running **WebView2APISample** app window shows the WebView2 SDK version and also the WebView2 Runtime version and path. The **WebView2APISample** app has several menus containing many menuitems that demonstrate a broad range of WebView2 APIs:
+
+![The WebView2WpfCompositionControl sample app running](./documentation/screenshot.png)
\ No newline at end of file
diff --git a/SampleApps/WebView2WpfCompositionControl/WebView2WpfCompositionControl.sln b/SampleApps/WebView2WpfCompositionControl/WebView2WpfCompositionControl.sln
new file mode 100644
index 0000000..fa132af
--- /dev/null
+++ b/SampleApps/WebView2WpfCompositionControl/WebView2WpfCompositionControl.sln
@@ -0,0 +1,25 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 17
+VisualStudioVersion = 17.11.35431.28
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebView2WpfCompositionControl", "WebView2WpfCompositionControl\WebView2WpfCompositionControl.csproj", "{B4C22133-B97C-4593-AB64-BE1694A0EC21}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {B4C22133-B97C-4593-AB64-BE1694A0EC21}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {B4C22133-B97C-4593-AB64-BE1694A0EC21}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {B4C22133-B97C-4593-AB64-BE1694A0EC21}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {B4C22133-B97C-4593-AB64-BE1694A0EC21}.Release|Any CPU.Build.0 = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {0E35B434-5EE7-4941-835D-0E7BD2B4D824}
+ EndGlobalSection
+EndGlobal
diff --git a/SampleApps/WebView2WpfCompositionControl/WebView2WpfCompositionControl/App.xaml b/SampleApps/WebView2WpfCompositionControl/WebView2WpfCompositionControl/App.xaml
new file mode 100644
index 0000000..f2982f8
--- /dev/null
+++ b/SampleApps/WebView2WpfCompositionControl/WebView2WpfCompositionControl/App.xaml
@@ -0,0 +1,9 @@
+
+
+
+
+
diff --git a/SampleApps/WebView2WpfCompositionControl/WebView2WpfCompositionControl/App.xaml.cs b/SampleApps/WebView2WpfCompositionControl/WebView2WpfCompositionControl/App.xaml.cs
new file mode 100644
index 0000000..67575bf
--- /dev/null
+++ b/SampleApps/WebView2WpfCompositionControl/WebView2WpfCompositionControl/App.xaml.cs
@@ -0,0 +1,14 @@
+using System.Configuration;
+using System.Data;
+using System.Windows;
+
+namespace WebView2WpfCompositionControl
+{
+ ///
+ /// Interaction logic for App.xaml
+ ///
+ public partial class App : Application
+ {
+ }
+
+}
diff --git a/SampleApps/WebView2WpfCompositionControl/WebView2WpfCompositionControl/AssemblyInfo.cs b/SampleApps/WebView2WpfCompositionControl/WebView2WpfCompositionControl/AssemblyInfo.cs
new file mode 100644
index 0000000..372e037
--- /dev/null
+++ b/SampleApps/WebView2WpfCompositionControl/WebView2WpfCompositionControl/AssemblyInfo.cs
@@ -0,0 +1,10 @@
+using System.Windows;
+
+[assembly: ThemeInfo(
+ ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
+ //(used if a resource is not found in the page,
+ // or application resource dictionaries)
+ ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
+ //(used if a resource is not found in the page,
+ // app, or any theme specific resource dictionaries)
+)]
diff --git a/SampleApps/WebView2WpfCompositionControl/WebView2WpfCompositionControl/MainWindow.xaml b/SampleApps/WebView2WpfCompositionControl/WebView2WpfCompositionControl/MainWindow.xaml
new file mode 100644
index 0000000..0e6a563
--- /dev/null
+++ b/SampleApps/WebView2WpfCompositionControl/WebView2WpfCompositionControl/MainWindow.xaml
@@ -0,0 +1,60 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/SampleApps/WebView2WpfCompositionControl/WebView2WpfCompositionControl/MainWindow.xaml.cs b/SampleApps/WebView2WpfCompositionControl/WebView2WpfCompositionControl/MainWindow.xaml.cs
new file mode 100644
index 0000000..ca22686
--- /dev/null
+++ b/SampleApps/WebView2WpfCompositionControl/WebView2WpfCompositionControl/MainWindow.xaml.cs
@@ -0,0 +1,95 @@
+using System.Windows;
+using Microsoft.Web.WebView2.Core;
+
+namespace WebView2WpfCompositionControl
+{
+ ///
+ /// Interaction logic for MainWindow.xaml
+ ///
+ public partial class MainWindow : Window
+ {
+ public MainWindow()
+ {
+ InitializeComponent();
+
+ webView.CoreWebView2InitializationCompleted += WebView_CoreWebView2InitializationCompleted;
+ webView.NavigationStarting += WebView_NavigationStarting;
+ webView.NavigationCompleted += WebView_NavigationCompleted;
+ webView.WebMessageReceived += WebView_WebMessageReceived;
+ webView.Source = new Uri("https://www.bing.com");
+ }
+
+ private void WebView_CoreWebView2InitializationCompleted(object? sender, CoreWebView2InitializationCompletedEventArgs e)
+ {
+ status.Content = "Initialized:" + (e.InitializationException?.ToString() ?? "Success");
+ }
+
+ private void WebView_WebMessageReceived(object? sender, CoreWebView2WebMessageReceivedEventArgs e)
+ {
+ status.Content = e.TryGetWebMessageAsString();
+ }
+
+ private void WebView_NavigationStarting(object? sender, CoreWebView2NavigationStartingEventArgs e)
+ {
+ status.Content = "NavigationStarting";
+ }
+
+ private void WebView_NavigationCompleted(object? sender, CoreWebView2NavigationCompletedEventArgs args)
+ {
+ // Update address bar
+ addressBar.Text = webView.Source.ToString();
+ string info = (args.IsSuccess ? webView.CoreWebView2.DocumentTitle : "error");
+ status.Content = $"NavigationCompleted:{info}";
+ }
+
+ private void GoButton_Click(object sender, RoutedEventArgs e)
+ {
+ if (webView != null && webView.CoreWebView2 != null)
+ {
+ String uri = addressBar.Text;
+ if (uri.StartsWith("http://")) { uri.Replace("http://", "https://"); }
+ try
+ {
+ webView.CoreWebView2.Navigate(uri);
+ }
+ catch
+ {
+ status.Content = "InvalidUrl";
+ }
+ }
+ }
+
+ private void ToggleButton_Click(object sender, RoutedEventArgs e)
+ {
+ airspaceButton.Visibility = (airspaceButton.IsVisible ? Visibility.Collapsed : Visibility.Visible);
+ status.Content = "Toggle:" + airspaceButton.Visibility;
+ }
+
+ private void AirspaceButton_Click(object sender, RoutedEventArgs e)
+ {
+ status.Content = "AirspaceClicked";
+ }
+
+ private void AddressBar_GotFocus(object sender, RoutedEventArgs e)
+ {
+ status.Content = "GotFocus:AddressBar";
+ }
+
+ private void GoButton_GotFocus(object sender, RoutedEventArgs e)
+ {
+ status.Content = "GotFocus:GoButton";
+ }
+
+ private void ToggleButton_GotFocus(object sender, RoutedEventArgs e)
+ {
+ status.Content = "GotFocus:ToggleButton";
+ }
+
+ private void AirspaceButton_GotFocus(object sender, RoutedEventArgs e)
+ {
+ status.Content = "GotFocus:AirspaceButton";
+ }
+ }
+
+}
+
diff --git a/SampleApps/WebView2WpfCompositionControl/WebView2WpfCompositionControl/WebView2WpfCompositionControl.csproj b/SampleApps/WebView2WpfCompositionControl/WebView2WpfCompositionControl/WebView2WpfCompositionControl.csproj
new file mode 100644
index 0000000..9497f97
--- /dev/null
+++ b/SampleApps/WebView2WpfCompositionControl/WebView2WpfCompositionControl/WebView2WpfCompositionControl.csproj
@@ -0,0 +1,17 @@
+
+
+
+ WinExe
+ net8.0-windows10.0.22000.0;netcoreapp3.0
+ enable
+ enable
+ true
+ 10
+ Debug
+
+
+
+
+
+
+
diff --git a/SampleApps/WebView2WpfCompositionControl/screenshot.png b/SampleApps/WebView2WpfCompositionControl/screenshot.png
new file mode 100644
index 0000000..78ae136
Binary files /dev/null and b/SampleApps/WebView2WpfCompositionControl/screenshot.png differ