我的目标是在.Droid项目的xamarin表单中的自定义控件上设置密码输入。
我的自定义呈现代码:
B
我测试了很多我在网上看过的代码,但没有成功。 如何设置控制标签,如密码标签?用户写作时我会看到点。 感谢。
答案 0 :(得分:2)
我认为您需要设置InputType
属性,例如:
Control.InputType = Android.Text.InputTypes.TextVariationPassword |
Android.Text.InputTypes.ClassText;