C# UserControl 可见属性
如何覆盖 UserControl
Visible
属性?或者我如何确定控件何时更改其可见状态?
稍后编辑:我需要它在 .NET CF 3.5 中工作。
谢谢。
How can I override a UserControl
Visible
property ? Or how could I determine within a control when it changes its Visible
state ?
Later edit: I need it to work in .NET CF 3.5.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我最终通过添加一个
new Visible
属性解决了这个问题,该属性设置base.Visible
属性并执行我的自定义工作。I finally fixed the issue by adding a
new Visible
property which is setting thebase.Visible
property and does my custom work.尝试订阅 IsVisibleChanged事件
Try to subscribe to the IsVisibleChanged event