diff --git a/SampleApps/WebView2APISample/README.md b/SampleApps/WebView2APISample/README.md index bbbea847..fecdaa42 100644 --- a/SampleApps/WebView2APISample/README.md +++ b/SampleApps/WebView2APISample/README.md @@ -1,5 +1,5 @@ --- -description: "Demonstrate the features and usage patterns of WebView2 in Win32." +description: "Demonstrates the features and usage patterns of WebView2 in a Win32 app." extendedZipContent: - path: SharedContent @@ -14,346 +14,23 @@ products: - microsoft-edge urlFragment: WebView2APISample --- -# WebView2 API Sample +# Win32 sample app -This is a hybrid application built with the [Microsoft Edge WebView2](https://aka.ms/webview2) control. + -![Sample App Snapshot](https://raw.githubusercontent.com/MicrosoftEdge/WebView2Samples/master/SampleApps/WebView2APISample/documentation/screenshots/sample-app-screenshot.png) + +This sample, **WebView2APISample**, embeds a WebView2 control within a Win32 application. -The WebView2APISample is an example of an application that embeds a WebView within a Win32 native application. It is built as a Win32 [Visual Studio 2019](https://visualstudio.microsoft.com/vs/) project and makes use of both C++ and HTML/CSS/JavaScript in the WebView2 environment. + +This sample is built as a Win32 Visual Studio 2019 project. It uses C++ in the native environment together with HTML/CSS/JavaScript in the WebView2 environment. This sample showcases many of WebView2's event handlers and API methods that allow a native Win32 application to directly interact with a WebView, and vice versa. -The API Sample showcases a selection of WebView2's event handlers and API methods that allow a native Win32 application to directly interact with a WebView and vice versa. + +The solution file for this sample is in the parent directory: `SampleApps/WebView2Samples.sln`. The solution file includes a copy of some of the other, sibling samples for other frameworks or platforms. -If this is your first time using WebView, we recommend first following the [Getting Started](https://learn.microsoft.com/microsoft-edge/webview2/gettingstarted/win32) guide, which goes over how to create a WebView2 and walks through some basic WebView2 functionality. + +To use this sample, see [Win32 sample app](https://learn.microsoft.com/microsoft-edge/webview2/samples/webview2apissample). -To learn more specifics about events and API Handlers in WebView2, you can refer to the [WebView2 Reference Documentation](https://learn.microsoft.com/microsoft-edge/webview2/webview2-api-reference). + +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: -## Prerequisites - -- [Microsoft Edge (Chromium)](https://www.microsoftedgeinsider.com/download/) installed on a supported OS. Currently we recommend the latest version of the Edge Canary channel. -- [Visual Studio](https://visualstudio.microsoft.com/vs/) with C++ support installed. -- Latest pre-release version of our [WebView2 SDK](https://aka.ms/webviewnuget), which is included in this project. - -## Build the WebView2 API Sample - -Clone the repository and open the solution in Visual Studio. WebView2 is already included as a NuGet package* in this project. - -- Clone this repository -- Open the solution in Visual Studio 2019** -- Set the target you want to build (Debug/Release, x86/x64/ARM64) -- Build the project file: _WebView2APISample.vcxproj_ - -That's it! Everything should be ready to just launch the app. - -*You can get the WebView2 NugetPackage through the Visual Studio NuGet Package Manager. - -**You can also use Visual Studio 2017 by changing the project's Platform Toolset in Project Properties/Configuration properties/General/Platform Toolset. You might also need to change the Windows SDK to the latest version available to you. - -## Application architecture - -The API Sample App is an example of a hybrid application. It has two parts: a Win32 native part and a WebView part. The Win32 part can access native Windows APIs, while the WebView container can utilize standard web technologies (HTML, CSS, JavaScript). - -This hybrid approach allows you to create and iterate faster using web technologies, while still being able to take advantage of native functionalities. The Sample App specifically demonstrates how both components can interact with each other. - -Both of these parts of the Sample App are displayed in the image below: - -![alt text](https://raw.githubusercontent.com/MicrosoftEdge/WebView2Samples/master/SampleApps/WebView2APISample/documentation/screenshots/sample-app-layout-diagram.png) - -1. Section One: The top part of the Sample App is a Win32 component written in C++. This part of the application takes in UI inputs from the user and uses them to control the WebView. - -2. Section Two: The main part of the Sample App is a WebView that can be repurposed using standard web technologies (HTML/CSS/JavaScript). It can be navigated to websites or local content. - -## Project Files - -This section briefly explains some key files within the repository. The WebView2APISample is divided vertically into components, instead of horizontally into layers. Each component implements the whole workflow of a category of example features, from listening for menu commands, to calling WebView API methods to implement them. - -#### 1. App.cpp - -This is the top-level file that runs the Sample App. It reads command line options, sets up the process environment, and handles the app's threading model. - -#### 2. AppWindow.cpp - -This file implements the application window. In this file, we first set up all the Win32 controls. Second, we initialize the WebView Environment and the WebView. Third, we add some event handlers to the WebView and create all the components that handle various features of the application. The `AppWindow` class itself handles commands from the application's Window menu. - -#### 3. FileComponent.cpp - -This component handles commands from the File menu (except for Exit), as well as the `DocumentTitleChanged` event. - -#### 4. ScriptComponent.cpp - -This component handles commands from the Script menu, which involve interacting with the WebView by injecting JavaScript, posting WebMessages, adding native objects to the webpage, or using the DevTools protocol to communicate with the webpage. - -#### 5. ProcessComponent.cpp - -This component handles commands from the Process menu, which involve interaction with the browser's process. It also handles the ProcessFailed event, in case the browser process or one of its render process crashes or is unresponsive. - -#### 6. SettingsComponent.cpp - -This component handles commands from the Settings menu, and is also in charge of copying settings from an old WebView when a new one is created. Most code that interacts with the `ICoreWebView2Settings` interface can be found here. - -#### 7. ViewComponent.cpp - -This component handles commands from the View menu, and any functionality related to sizing and visibility of the WebView. When the app window is resized, minimized, or restored, `ViewComponent` will resize, hide, or show the WebView in response. It also responds to the `ZoomFactorChanged` event. - -#### 8. ScenarioWebMessage.cpp and ScenarioWebMessage.html - -This component is created when you select the Scenario/Web Messaging menu item. It implements an example application with a C++ part and an HTML+JavaScript part, which communicate with each other by asynchronously posting and receiving messages. - -![alt text](https://raw.githubusercontent.com/MicrosoftEdge/WebView2Samples/master/SampleApps/WebView2APISample/documentation/screenshots/sample-app-webmessaging-screenshot.png) - -#### 9. ScenarioAddHostObject.cpp and ScenarioAddHostObject.html - -This component is created when you select the Scenario/Host Objects menu item. It demonstrates communication between the native app and the HTML webpage by means of host object injection. The interface of the host object is declared in `HostObjectSample.idl`, and the object itself is implemented in `HostObjectSampleImpl.cpp`. - -## Key Functions - -The section below briefly explains some of the key functions in the Sample App. - -### AppWindow.cpp - -#### InitializeWebView() - -In the AppWindow file, we use the InitializeWebView() function to create the WebView2 environment by using [CreateCoreWebView2EnvironmentWithOptions](https://learn.microsoft.com/microsoft-edge/webview2/reference/win32/webview2-idl#createcorewebview2environmentwithoptions). - -Once we've created the environment, we create the WebView by using `CreateCoreWebView2Controller`. - -To see these API calls in action, refer to the following code snippet from `InitializeWebView()`. - -```cpp -HRESULT hr = CreateCoreWebView2EnvironmentWithOptions( - subFolder, nullptr, options.Get(), - Callback( - this, &AppWindow::OnCreateEnvironmentCompleted) - .Get()); -if (!SUCCEEDED(hr)) -{ - if (hr == HRESULT_FROM_WIN32(ERROR_FILE_NOT_FOUND)) - { - MessageBox( - m_mainWindow, - L"Couldn't find Edge installation. " - "Do you have a version installed that's compatible with this " - "WebView2 SDK version?", - nullptr, MB_OK); - } - else - { - ShowFailure(hr, L"Failed to create webview environment"); - } -} -``` - -#### OnCreateEnvironmentCompleted() - -This callback function is passed to `CreateCoreWebView2EnvironmentWithOptions` in `InitializeWebView()`. It stored the environment pointer and then uses it to create a new WebView. - -```cpp -HRESULT AppWindow::OnCreateEnvironmentCompleted( - HRESULT result, ICoreWebView2Environment* environment) -{ - CHECK_FAILURE(result); - - m_webViewEnvironment = environment; - - CHECK_FAILURE(m_webViewEnvironment->CreateCoreWebView2Controller( - m_mainWindow, Callback( - this, &AppWindow::OnCreateCoreWebView2ControllerCompleted) - .Get())); - return S_OK; -} -``` - -#### OnCreateCoreWebView2ControllerCompleted() - -This callback function is passed to `CreateCoreWebView2Controller` in `InitializeWebView()`. Here, we initialize the WebView-related state, register some event handlers, and create the app components. - -#### RegisterEventHandlers() - -This function is called within `CreateCoreWebView2Controller`. It sets up some of the event handlers used by the application, and adds them to the WebView. - -To read more about event handlers in WebView2, you can refer to this [documentation](https://learn.microsoft.com/microsoft-edge/webview2/reference/win32/icorewebview2). - -Below is a code snippet from `RegisterEventHandlers()`, where we set up an event handler for the `NewWindowRequested` event. This event is fired when JavaScript in the webpage calls `window.open()`, and our handler makes a new `AppWindow` and passes the new window's WebView back to the browser so it can return it from the `window.open()` call. Unlike our calls to `CreateCoreWebView2EnvironmentWithOptions` and `CreateCoreWebView2Controller`, instead of providing a method for the callback, we just provide a C++ lambda right then and there. - -```cpp -CHECK_FAILURE(m_webView->add_NewWindowRequested( - Callback( - [this]( - ICoreWebView2* sender, - ICoreWebView2NewWindowRequestedEventArgs* args) { - wil::com_ptr deferral; - CHECK_FAILURE(args->GetDeferral(&deferral)); - - auto newAppWindow = new AppWindow(L""); - newAppWindow->m_isPopupWindow = true; - newAppWindow->m_onWebViewFirstInitialized = [args, deferral, newAppWindow]() { - CHECK_FAILURE(args->put_NewWindow(newAppWindow->m_webView.get())); - CHECK_FAILURE(args->put_Handled(TRUE)); - CHECK_FAILURE(deferral->Complete()); - }; - - return S_OK; - }) - .Get(), - nullptr)); -``` - -### ScenarioWebMessage - -The `ScenarioWebMessage` files show how the Win32 Host can modify the WebView, how the WebView can modify the Win32Host, and how the WebView can modify itself by accessing information from the Win32 Host. This is done asynchronously. - -The following sections demonstrate how each discrete function works using the Sample App and then explains how to implement this functionality. - -First, navigate to the ScenarioWebMessage application within the Sample App, using the following steps: - -1. Open the Sample App -2. Click on Scenario -3. Click on Web Messaging - -The WebView should display a simple webpage titled: "WebMessage sample page". The code for this page can be found in the `ScenarioWebMessage.html` file. - -![alt text](https://raw.githubusercontent.com/MicrosoftEdge/WebView2Samples/master/SampleApps/WebView2APISample/documentation/screenshots/sample-app-webmessaging-screenshot.png) - -To better understand ScenarioWebMessage functionality, you can either follow the instructions on the page or the steps detailed below. - -#### 1. Posting Messages (Win32 Host to WebView) - -The following steps show how the Win32 Host can modify a WebView. In this example, you will turn the text blue: - -1. Click on Script in the Toolbar -2. Click on Post Web Message JSON - -A dialog box with the pre-written code `{"SetColor":"blue"}` should appear. - -3. Click OK - -The text under Posting Messages should now be blue. - -Here's how it works: - -1. In `ScriptComponent.cpp`, we use [PostWebMessageAsJson](https://learn.microsoft.com/microsoft-edge/webview2/reference/win32/icorewebview2#postwebmessageasjson) to post user input to the `ScenarioMessage.html` web application. - -```cpp -// Prompt the user for some JSON and then post it as a web message. -void ScriptComponent::SendJsonWebMessage() -{ - TextInputDialog dialog( - m_appWindow->GetMainWindow(), - L"Post Web Message JSON", - L"Web message JSON:", - L"Enter the web message as JSON.", - L"{\"SetColor\":\"blue\"}"); - if (dialog.confirmed) - { - m_webView->PostWebMessageAsJson(dialog.input.c_str()); - } -} -``` - -2. Within the web application, event listeners are used to receive and respond to the web message. The code snippet below is from `ScenarioWebMessage.html`. The event listener changes the color of the text if it reads "SetColor". - -```js -window.chrome.webview.addEventListener('message', arg => { - if ("SetColor" in arg.data) { - document.getElementById("colorable").style.color = arg.data.SetColor; - } -}); -``` - -#### 2. Receiving Messages (WebView to Win32 Host) - -The following steps show how the WebView can modify the Win32 Host App by changing the title of the Win32 App: - -1. Locate the Title of the Sample App - the top left of the window next to the icon. -2. Under the Receiving Message section, fill out the form with the new title of your choice. -3. Click Send - -Locate the Title of the Sample App, it should have changed to the title you have just inputted. - -Here's how it works: - -1. Within `ScenarioWebMessage.html`, we call [window.chrome.webview.postMessage()](https://developer.mozilla.org/docs/Web/API/Window/postMessage) to send the user input to the host application. Refer to code snippet below: - -```js -function SetTitleText() { - let titleText = document.getElementById("title-text"); - window.chrome.webview.postMessage(`SetTitleText ${titleText.value}`); -} -``` - -2. Within `ScenarioWebMessage.cpp`, we use [add_WebMessageReceived](https://learn.microsoft.com/microsoft-edge/webview2/reference/win32/icorewebview2#add_webmessagereceived) to register the event handler. When we receive the event, after validating the input, we change the title of the App Window. - -```cpp -// Setup the web message received event handler before navigating to -// ensure we don't miss any messages. -CHECK_FAILURE(m_webview->add_WebMessageReceived( - Microsoft::WRL::Callback( - [this](ICoreWebView2* sender, ICoreWebView2WebMessageReceivedEventArgs* args) -{ - wil::unique_cotaskmem_string uri; - CHECK_FAILURE(args->get_Source(&uri)); - - // Always validate that the origin of the message is what you expect. - if (uri.get() != m_sampleUri) - { - return S_OK; - } - wil::unique_cotaskmem_string messageRaw; - CHECK_FAILURE(args->TryGetWebMessageAsString(&messageRaw)); - std::wstring message = messageRaw.get(); - - if (message.compare(0, 13, L"SetTitleText ") == 0) - { - m_appWindow->SetTitleText(message.substr(13).c_str()); - } - return S_OK; -}).Get(), &m_webMessageReceivedToken)); -``` - -#### 3. Roundtrip (WebView to WebView) - -The following steps show how the WebView can get information from the Win32 Host and modify itself by displaying the size of the Win32 App. - -1. Under RoundTrip, click GetWindowBounds - -The box underneath the button should display the bounds for the Sample App. - -Here's how it works: - -1. When the 'Get window bounds' button is clicked, the `GetWindowBounds` function in `ScenarioWebMessage.html` gets called. It uses [window.chrome.webview.postMessage()](https://developer.mozilla.org/docs/Web/API/Window/postMessage) to send a message to the host application. - -```js -function GetWindowBounds() { - window.chrome.webview.postMessage("GetWindowBounds"); - } -``` - -2. Within `ScenarioWebMessage.cpp`, we use [add_WebMessageReceived](https://learn.microsoft.com/microsoft-edge/webview2/reference/win32/icorewebview2#add_webmessagereceived) to register the received event handler. After validating the input, the event handler gets window bounds from the App Window. [PostWebMessageAsJson](https://learn.microsoft.com/microsoft-edge/webview2/reference/win32/icorewebview2#postwebmessageasjson) sends the bounds to the web application. - -```cpp -if (message.compare(L"GetWindowBounds") == 0) -{ - RECT bounds = m_appWindow->GetWindowBounds(); - std::wstring reply = - L"{\"WindowBounds\":\"Left:" + std::to_wstring(bounds.left) - + L"\\nTop:" + std::to_wstring(bounds.top) - + L"\\nRight:" + std::to_wstring(bounds.right) - + L"\\nBottom:" + std::to_wstring(bounds.bottom) - + L"\"}"; - CHECK_FAILURE(sender->PostWebMessageAsJson(reply.c_str())); -} -``` - -3. Within `ScenarioWebMessage.html`, an event listener responds to the WindowBounds message and displays the bounds of the window. - -```js -window.chrome.webview.addEventListener('message', arg => { - if ("WindowBounds" in arg.data) { - document.getElementById("window-bounds").value = arg.data.WindowBounds; - } -}); -``` - -## Code of Conduct - -This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact opencode@microsoft.com with any additional questions or comments. +![The WebView2APISample sample app running](./documentation/screenshots/sample-app-screenshot.png) diff --git a/SampleApps/WebView2APISample/documentation/screenshots/sample-app-layout-diagram.png b/SampleApps/WebView2APISample/documentation/screenshots/sample-app-layout-diagram.png deleted file mode 100644 index 5f2566bc..00000000 Binary files a/SampleApps/WebView2APISample/documentation/screenshots/sample-app-layout-diagram.png and /dev/null differ diff --git a/SampleApps/WebView2APISample/documentation/screenshots/sample-app-screenshot.png b/SampleApps/WebView2APISample/documentation/screenshots/sample-app-screenshot.png index c891df6d..6d32a13e 100644 Binary files a/SampleApps/WebView2APISample/documentation/screenshots/sample-app-screenshot.png and b/SampleApps/WebView2APISample/documentation/screenshots/sample-app-screenshot.png differ diff --git a/SampleApps/WebView2APISample/documentation/screenshots/sample-app-webmessaging-screenshot.png b/SampleApps/WebView2APISample/documentation/screenshots/sample-app-webmessaging-screenshot.png deleted file mode 100644 index 88f1ac14..00000000 Binary files a/SampleApps/WebView2APISample/documentation/screenshots/sample-app-webmessaging-screenshot.png and /dev/null differ diff --git a/SampleApps/WebView2WindowsFormsBrowser/README.md b/SampleApps/WebView2WindowsFormsBrowser/README.md index c7a1360c..8d0d83cb 100644 --- a/SampleApps/WebView2WindowsFormsBrowser/README.md +++ b/SampleApps/WebView2WindowsFormsBrowser/README.md @@ -1,5 +1,5 @@ --- -description: "Demonstrate the features and usage patterns of WebView2 in Windows Forms." +description: "Demonstrates the features and usage patterns of WebView2 in Windows Forms apps." extendedZipContent: - path: SharedContent @@ -14,41 +14,13 @@ products: - microsoft-edge urlFragment: WebView2WindowsFormsBrowser --- -# WebView2 Windows Forms Browser +# WinForms sample app -This is a hybrid application built with the [Microsoft Edge WebView2](https://aka.ms/webview2) control. + +This sample, **WebView2WindowsFormsBrowser**, embeds a WebView within a Windows Forms application. -![Sample App Snapshot](https://raw.githubusercontent.com/MicrosoftEdge/WebView2Samples/master/SampleApps/WebView2WindowsFormsBrowser/screenshots/winforms-browser-screenshot.png) +This sample is built as a Windows Forms Visual Studio project. It uses C# and HTML/CSS/JavaScript in the WebView2 environment. -The WebView2WindowsFormsBrowser is an example of an application that embeds a WebView within a Windows Forms application. It is built as a Windows Forms [Visual Studio 2019](https://visualstudio.microsoft.com/vs/) project and makes use of both C# and HTML/CSS/JavaScript in the WebView2 environment. +For more information, see [WinForms sample app](https://learn.microsoft.com/microsoft-edge/webview2/samples/webview2windowsformsbrowser). -The API Sample showcases a selection of WebView2's event handlers and API methods that allow a Windows Forms application to directly interact with a WebView and vice versa. - -If this is your first time using WebView, we recommend first following the [Getting Started](https://learn.microsoft.com/microsoft-edge/webview2/gettingstarted/winforms) guide, which goes over how to create a WebView2 and walks through some basic WebView2 functionality. - -To learn more specifics about events and API Handlers in WebView2, you can refer to the [WebView2 Reference Documentation](https://learn.microsoft.com/microsoft-edge/webview2/webview2-api-reference). - -## Prerequisites - -- [Microsoft Edge (Chromium)](https://www.microsoftedgeinsider.com/download/) installed on a supported OS. Currently we recommend the latest version of the Edge Canary channel. -- [Visual Studio](https://visualstudio.microsoft.com/vs/) with .NET support installed. -- Latest pre-release version of our [WebView2 SDK](https://aka.ms/webviewnuget), which is included in this project. - -## Build the WebView2 Windows Forms Browser - -Clone the repository and open the solution in Visual Studio. WebView2 is already included as a NuGet package* in this project. - -- Clone this repository -- Open the solution in Visual Studio 2019** -- Set the target you want to build (Debug/Release, AnyCPU) -- Build the project file: _WebView2WindowsFormsBrowser.csproj_ - -That's it! Everything should be ready to just launch the app. - -*You can get the WebView2 NugetPackage through the Visual Studio NuGet Package Manager. - -**You can also use Visual Studio 2017 by changing the project's Platform Toolset in Project Properties/Configuration properties/General/Platform Toolset. You might also need to change the Windows SDK to the latest version available to you. - -## Code of Conduct - -This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact opencode@microsoft.com with any additional questions or comments. +![The WinForms sample app running](screenshots/winforms-browser-screenshot.png) diff --git a/SampleApps/WebView2WpfBrowser/README.md b/SampleApps/WebView2WpfBrowser/README.md index e87e4ac7..966c1e3b 100644 --- a/SampleApps/WebView2WpfBrowser/README.md +++ b/SampleApps/WebView2WpfBrowser/README.md @@ -1,5 +1,5 @@ --- -description: "Demonstrate the features and usage patterns of WebView2 in WPF." +description: "Demonstrates the features and usage patterns of WebView2 in WPF apps." extendedZipContent: - path: SharedContent @@ -14,45 +14,13 @@ products: - microsoft-edge urlFragment: WebView2WpfBrowser --- -# WebView2 WPF Browser +# WPF sample app -This is a hybrid application built with the [Microsoft Edge WebView2](https://aka.ms/webview2) control. + +This sample, **WebView2WpfBrowser**, embeds a WebView2 control within a WPF application. -![Sample App Snapshot](https://raw.githubusercontent.com/MicrosoftEdge/WebView2Samples/master/SampleApps/WebView2WpfBrowser/screenshots/wpf-browser-screenshot.png) +This sample is built as a WPF Visual Studio 2019 project. It uses C# and HTML/CSS/JavaScript in the WebView2 environment. -The WebView2WpfBrowser is an example of an application that embeds a WebView within a WPF application. It is built as a WPF [Visual Studio 2019](https://visualstudio.microsoft.com/vs/) project and makes use of both C# and HTML/CSS/JavaScript in the WebView2 environment. +For more information, see [WPF sample app](https://learn.microsoft.com/microsoft-edge/webview2/samples/webview2wpfbrowser). -The API Sample showcases a selection of WebView2's event handlers and API methods that allow a WPF application to directly interact with a WebView and vice versa. - -If this is your first time using WebView, we recommend first following the [Getting Started](https://learn.microsoft.com/microsoft-edge/webview2/gettingstarted/wpf) guide, which goes over how to create a WebView2 and walks through some basic WebView2 functionality. - -To learn more specifics about events and API Handlers in WebView2, you can refer to the [WebView2 Reference Documentation](https://learn.microsoft.com/microsoft-edge/webview2/webview2-api-reference). - -## Prerequisites - -- [Microsoft Edge (Chromium)](https://www.microsoftedgeinsider.com/download/) installed on a supported OS. Currently we recommend the latest version of the Edge Canary channel. -- [Visual Studio](https://visualstudio.microsoft.com/vs/) with .NET support installed. -- Latest pre-release version of our [WebView2 SDK](https://aka.ms/webviewnuget), which is included in this project. - -## Build the WebView2 WPF Browser - -Clone the repository and open the solution in Visual Studio. WebView2 is already included as a NuGet package* in this project. - -- Clone this repository -- Open the solution in Visual Studio 2019** -- Set the target you want to build (Debug/Release, AnyCPU) -- Build the project file: _WebView2WpfBrowser.csproj_ - -That's it! Everything should be ready to just launch the app. - -*You can get the WebView2 NugetPackage through the Visual Studio NuGet Package Manager. - -**You can also use Visual Studio 2017 by changing the project's Platform Toolset in Project Properties/Configuration properties/General/Platform Toolset. You might also need to change the Windows SDK to the latest version available to you. - -## Using Fixed version - -If you want to use [fixed version](https://learn.microsoft.com/en-us/microsoft-edge/webview2/concepts/distribution#fixed-version-distribution-mode), i.e. Bring-Your-Own (BYO), follow the instructions in MainWindow.xaml and App.xaml. - -## Code of Conduct - -This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact opencode@microsoft.com with any additional questions or comments. +![The WPF sample app running](screenshots/wpf-browser-screenshot.png)