自定义 Winforms 设置页面

发布于 2024-12-29 10:00:35 字数 384 浏览 0 评论 0原文

我有一个 设置页面 用 C# 构建,我想通过两种方式自定义它。

  1. 我希望不同的设置按照非字母顺序的特定顺序进行排序
  2. 我想根据其他设置的值启用/禁用某些设置的编辑。

是否可以通过设置页面来完成此操作,或者我是否需要设计自定义控件?

谢谢!

I've got a settings page built up in C# and I'd like to customize it in 2 ways.

  1. I'd like the different settings to be sorted in a particular order that is not alphabetic
  2. 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

森林迷了鹿 2025-01-05 10:00:35

如果您使用的是 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文