我想在ContentPage
. 我不想为每个弹出窗口制作单独的文件。因此,我希望它们位于ContentPage
将显示弹出窗口的内部。无论如何我可以做到这一点吗?
这是我的 XAML 代码:
<?xml version="1.0" encoding="UTF-8"?>
<xct:Popup xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:xct="http://xamarin.com/schemas/2020/toolkit"
x:Class="SampleProject.Views.SamplePopup" Size="300, 300">
<StackLayout>
<Label Text="Hello Xamarin.Forms!" />
<Button Text="Close Popup" Clicked="ClosePopup" />
</StackLayout>
</xct:Popup>