对设计器隐藏 WPF 控件的属性 (Visual Studio 2010)
我正在使用 Visual Studio 2010 和 WPF。
我正在创建一个继承自 ContentControl 的新控件,并且我想隐藏 Content 属性,以便在设计时它将在“属性”窗口中不可见。
我尝试过
[Browsable(false)]
像 WinForms 中那样,但它不起作用。
知道如何解决这个问题吗?
谢谢。
I'm using Visual Studio 2010 and WPF.
I'm creating a new Control that inherits from ContentControl and I wanna hide the Content property so it will be invisible in the Properties window at design time.
I tried with
[Browsable(false)]
like we do in WinForms but it doesn't work.
Any idea about how to solve this?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
米歇尔,
您的属性需要设置为公共:
一旦您将其设置为公共,它将从属性窗口中隐藏。
私有:
公开:
谢谢
Michelle,
Your property needs to be set to public:
Once you set it to public, it will hide from the properties window.
With Private:
With Public:
Thanks