Bha*_*thi 4 xamarin xamarin.forms
我有一个 Xamarin.Forms 共享项目(不是 PCL)应用程序,想要迁移到 .NetStandard 项目。我在网上办理了登机手续,但没有得到任何参考。我欢迎你的提示
谢谢,
喜欢
#if __MOBILE__
// Xamarin iOS or Android-specific code
#endif
//OR
#if __IOS__
// iOS-specific code
#endif
Run Code Online (Sandbox Code Playgroud)
和
if(Device.Idiom == TargetIdiom.Phone)//TargetIdiom.Tablet OR what ever you want
{
-----
}
if(Device.RuntimePlatform == Device.iOS)//OR Device.Android
{
-----
}
Run Code Online (Sandbox Code Playgroud)
归档时间: |
|
查看次数: |
967 次 |
最近记录: |