Xamarin.Forms平板电脑和手机

时间:2014-11-20 19:36:09

标签: xamarin.forms

有没有人看过支持平板电脑和手机用户界面而不对片段进行依赖注入的代码的Xamarin.Forms示例?

我想利用屏幕空间,到目前为止我用ContentView构建了整个应用程序 - > ViewModel架构,但我似乎无法找到任何示例Xamarin.Forms代码专门处理通用UI。

1 个答案:

答案 0 :(得分:2)

请参阅How to create a tablet UI with multiple ContentPages on one screen at the same time with Xamarin.Forms?

它的要点是创建基于ContentView的UI实现,然后决定是否将它们显示在ContentPage内(在手机上)或在其中显示两个或多个一个ContentPage(在平板电脑上)。

您还可以利用[OnPlatform][1]以声明方式在两者之间进行选择。