在此项目中,在多个地方都需要XAML的一部分,因此我将其放在App上。 Xaml it Ui部分正在工作。但我需要添加一个物品点击事件或其他任何东西。为了必须转到另一个页面,我需要使用项目点击命令,但在这里他们在app.Xaml代码后面无法识别其名称。
有一种更好的方法可以执行此操作而不将其放在APP.xaml上,或者如果这是如何使用此处点击的项目的方法
<Application.Resources>
<ResourceDictionary>
<ControlTemplate x:Key="PageTemplate">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="8*"></RowDefinition>
<RowDefinition Height="*"></RowDefinition>
</Grid.RowDefinitions>
<ContentPresenter Grid.Row="0"></ContentPresenter>
<customRenderes:NavigationImageButton Source="IconFAB" Grid.Row="1"
x:Name="Button1"
AbsoluteLayout.LayoutFlags="PositionProportional"
AbsoluteLayout.LayoutBounds="1.0,1.0,-1,-1"
HorizontalOptions="EndAndExpand"
Margin="10"
Opacity="0.4"
ItemTapped="Button1_OnItemTapped"/>
</Grid>
</ControlTemplate>
</ResourceDictionary>
</Application.Resources>
当点击此浮动菜单时,我需要执行一些功能,这是在App.Xaml上执行此操作的更好方法,或者如果这是执行操作的方法,那么