MonacoEditPage.xaml 635 B

1234567891011121314151617
  1. <Page
  2. x:Class="Maple_App.MonacoEditPage"
  3. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5. xmlns:local="using:Maple_App"
  6. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  7. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  8. xmlns:muxc="using:Microsoft.UI.Xaml.Controls"
  9. mc:Ignorable="d"
  10. Loaded="Page_Loaded"
  11. Unloaded="Page_Unloaded"
  12. NavigationCacheMode="Required">
  13. <Grid>
  14. <muxc:WebView2 x:Name="WebView" WebMessageReceived="WebView_WebMessageReceived" />
  15. </Grid>
  16. </Page>