对于 IDE,什么是属性编辑器?
只是一个简单的问题:当谈到 IDE 时,什么是属性编辑器?
Just a quick question: When talking in terms of an IDE, what is a property editor?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
只是一个简单的问题:当谈到 IDE 时,什么是属性编辑器?
Just a quick question: When talking in terms of an IDE, what is a property editor?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
您可能听说过 Visual Studio 中的属性窗口,它允许您在设计时更改控件公开的属性。
它看起来像这样(至少,如果您还是老派的话),但通常您会发现它在所有 IDE 中都是作为基于网格的窗口实现的:
否则,您可能正在谈论继承自
UITypeEditor
并允许您向您创建的自定义控件添加设计时支持。它与上面显示的属性窗口结合使用,可以添加与自定义控件的特定需求相关的附加功能。 这篇 CodeProject 文章对此进行了详细讨论。You're probably hearing about the Properties Window in Visual Studio that allows you to change the properties exposed by a control at Design Time.
It looks something like this (at least, if you're kickin it old school), but generally you'll find it implemented as a grid-based window in all IDEs:
Otherwise, you're probably talking about a custom class that inherits from
UITypeEditor
and allows you to add design-time support to a custom control that you've created. It works in conjunction with the Properties Window shown above to add additional functionality that is relevant to the specific needs of your custom control. This is discussed in detail in this CodeProject article.