如何将 UserControl 内的控件设为私有?
我有一个带有组合框和文本框的用户控件。 一切都工作得很好,除了我注意到从我的用户控件的实例对象中,我可以访问这两个控件。 除非通过我自己公开的属性,否则不应访问它们。
I have a user control with a ComboBox and a TextBox. Everything is working great except I noticed that from my user control's instance object, I can access those two controls. They shouldn't be accessible except via my own exposed properties.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在控件上使用 x:FieldModifier 属性,因此
: x:FieldModifier 的 MSDN 页面没有给出“private”作为该属性的有效值,但我已经测试过它并且它有效。
You can use the x:FieldModifier attribute on your controls, thusly:
Interestingly the MSDN page for x:FieldModifier doesn't give "private" as a valid value for the attribute, but I've tested it and it works.