在 System.ComponentModel 命名空间中使用哪个属性来设置字段顺序?
默认情况下,设计器中的字段按字母顺序列出。有谁知道在 System.ComponentModel 命名空间中使用哪个属性来显式设置顺序?
By default, the fields in the designer are listed in alphabetical order. Does anyone know which attribute to use in the System.ComponentModel
namespace to set the order explicitly?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用[类别]属性对属性进行分组,以便用户可以单击“属性”窗口中的“分类”图标来排列它们。在类别内,名称仍将按字母顺序排序。
PropertyGrid.PropertySort 属性确实有一个设置(PropertySort.Categorized 与 PropertySort.CategorizedAlphabetical),但 IDE 的“属性”窗口没有可在它们之间进行选择的图标。
Use the [Category] attribute to group properties so that the user can click the "Categorized" icon in the Properties window to arrange them. Within a category, the names will still be sorted alphabetically.
The PropertyGrid.PropertySort property does have a setting for it (PropertySort.Categorized vs PropertySort.CategorizedAlphabetical) but the IDE's Properties window doesn't have an icon to choose between them.
您可以实现 ICustomTypeDescriptor 并按您喜欢的顺序返回属性。无法保证 ui 元素会遵守该顺序。
You can implement ICustomTypeDescriptor and return the properties in the order you like. There is no guarantee the ui elements will honour that order.