自定义 Winforms 设置页面
我有一个 设置页面 用 C# 构建,我想通过两种方式自定义它。
- 我希望不同的设置按照非字母顺序的特定顺序进行排序
- 我想根据其他设置的值启用/禁用某些设置的编辑。
是否可以通过设置页面来完成此操作,或者我是否需要设计自定义控件?
谢谢!
I've got a settings page built up in C# and I'd like to customize it in 2 ways.
- I'd like the different settings to be sorted in a particular order that is not alphabetic
- I'd like to enable/disable the editing of certain settings based off of the values of other settings.
Is it possible to do this with a settings page or do I need to design a custom control?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用的是 PropertyGrid 控件,您可以阅读有关如何自定义它的信息 此处和此处。
为了有时显示属性,您可以实现 ICustomTypeDescriptor 接口,通过执行此操作,您将能够控制要动态编辑的属性的顺序和列表。
If you are using the PropertyGrid control you can read up on how to customise it here and here.
In order to display properties some of the time you can implement the ICustomTypeDescriptor interface by doing this you will be able to control the order and the list of properties to be edited dynamically.