// Copyright (C) Microsoft Corporation. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. using Microsoft.UI.Xaml.Controls; using Microsoft.Web.WebView2.Core; using System; using System.Collections.Generic; using Windows.UI.Xaml.Controls; namespace WebView2_UWP.Pages { public sealed partial class NewWindow : BasePage { public enum OptionEnum { DoNothing, Cancel, OpenUriInDefaultBrowser, OpenInCustomWindow }; private class Option { public OptionEnum OptionEnum { get; set; } public string Name { get; set; } public string Description { get; set; } }; private List