Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在我的 VSTO 解决方案的自定义后台选项卡中输入密码。如何屏蔽密码?编辑框似乎不支持这一点,或者是吗?
功能区控件通常比标准 .NET 控件限制更多,所以不,它不支持特殊密码字符。
在保留在后台视图中的同时解决此问题的最佳方法是将实际字符放在类似的Tag位置EditBox,并将占位符密码字符放在Text属性中,然后设计一种在TextChanged触发事件时同步两者的方法。
Tag
EditBox
Text
TextChanged