如何在 xamarin 表单 UWP 中使用 AppWindow 打开多个 window?
How to Open multiple window using AppWindow in xamarin forms UWP?
因为我使用 'AppWindow' 在 xamarin 表单 UWP 中打开单独的 window。我尝试用下面的代码打开 window,
if (appWindow == null)
{
appWindow = await AppWindow.TryCreateAsync();
Frame appWindowFrame = new Frame();
appWindowFrame.Navigate(typeof(testpage));
ElementCompositionPreview.SetAppWindowContent(appWindow, appWindowFrame);
}
await appWindow.TryShowAsync();
当'Appwindow.TryCreateAsync'方法调用时,会抛出'Class not registered exception'。请看下面的片段,
我试图检查这个问题并试图找到解决方案。但我没有得到任何解决方案来解决这个问题。如果您遇到同样的问题或任何解决方案,请告诉我。
请确保您的 testpage
扩展 Page
。
我创建了一个名为 AppWindowMainPage
的空白页面,如下图所示。
AppWindowMainPage.cs
public sealed partial class AppWindowMainPage : Page
{
public AppWindowMainPage()
{
this.InitializeComponent();
}
}
AppWindowMainPage.xaml
<Page
x:Class="App75.UWP.AppWindowMainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:App75.UWP"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<Grid>
<TextBlock Text="test"></TextBlock>
</Grid>
</Page>
当我运行代码时,它可以打开一个新的window。
因为我使用 'AppWindow' 在 xamarin 表单 UWP 中打开单独的 window。我尝试用下面的代码打开 window,
if (appWindow == null)
{
appWindow = await AppWindow.TryCreateAsync();
Frame appWindowFrame = new Frame();
appWindowFrame.Navigate(typeof(testpage));
ElementCompositionPreview.SetAppWindowContent(appWindow, appWindowFrame);
}
await appWindow.TryShowAsync();
当'Appwindow.TryCreateAsync'方法调用时,会抛出'Class not registered exception'。请看下面的片段,
我试图检查这个问题并试图找到解决方案。但我没有得到任何解决方案来解决这个问题。如果您遇到同样的问题或任何解决方案,请告诉我。
请确保您的 testpage
扩展 Page
。
我创建了一个名为 AppWindowMainPage
的空白页面,如下图所示。
AppWindowMainPage.cs
public sealed partial class AppWindowMainPage : Page
{
public AppWindowMainPage()
{
this.InitializeComponent();
}
}
AppWindowMainPage.xaml
<Page
x:Class="App75.UWP.AppWindowMainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:App75.UWP"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<Grid>
<TextBlock Text="test"></TextBlock>
</Grid>
</Page>
当我运行代码时,它可以打开一个新的window。