Xamarin.Forms中页面之间的共享元素

时间:2017-12-28 14:25:58

标签: xaml xamarin.forms

我正在使用Xamarin.Forms创建一个应用程序,并且所有页面都有相同的"标题",它有一个照片和两个按钮。

我想知道,是否有可能创建一个自定义元素,我可以在xaml中实例化,就像我可以使用Button或Label一样?如果是,我该怎么办?

1 个答案:

答案 0 :(得分:0)

解决方案是在App.xaml的Application.Resources中的ResourceDictionary中使用ControlTemplate。您可以在使用它时为整个应用定义页眉/页脚/自定义主题。看看https://developer.xamarin.com/guides/xamarin-forms/application-fundamentals/templates/control-templates/creating/