├── App.xaml ├── App.xaml.cs ├── DemoDialog.xaml ├── DemoDialog.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── WebDemoExe.csproj ├── icon.ico ├── icon_cables.ico ├── readme.md └── webdemoexe.sln /App.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 14 | 15 | 18 | 19 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /App.xaml.cs: -------------------------------------------------------------------------------- 1 | // Copyright (C) Microsoft Corporation. All rights reserved. 2 | // Use of this source code is governed by a BSD-style license that can be 3 | // found in the LICENSE file. 4 | 5 | using System.Runtime.InteropServices; 6 | using System.Windows; 7 | 8 | namespace WebDemoExe 9 | { 10 | /// 11 | /// Interaction logic for App.xaml 12 | /// 13 | public partial class App : Application 14 | { 15 | public bool newRuntimeEventHandled = false; 16 | 17 | public App() 18 | { 19 | InitializeComponent(); 20 | this.Resources["AdditionalArgs"] = "--enable-features=ThirdPartyStoragePartitioning,PartitionedCookies"; 21 | 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /DemoDialog.xaml: -------------------------------------------------------------------------------- 1 |  13 | 14 | 15 | 16 | 20 | 23 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 |