本文介绍了Xamarin Forms 在 iOS 上隐藏按钮并在 Android 上显示它的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何在 iOS 上隐藏按钮、标签或网格单元并在 android 上显示它,我有一个 xamarin.forms 应用程序(便携式),我知道我必须在平台上使用,但如何访问控件.
How to hide a button, a label or a grid cell on iOS and show it on android, I have a xamarin.forms app (portable), I know that I have to use on platform but how to access the visibility of the controls.
谢谢
推荐答案
// IOS, Android, WP
SomeButton.IsVisible = Device.OnPlatform<bool>(false, true, true);
或
if (Device.OS == TargetPlatform.Android)
{
SomeButton.IsVisible = true;
}
else
...
这篇关于Xamarin Forms 在 iOS 上隐藏按钮并在 Android 上显示它的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!