TabControl添加很慢

发布于 2024-08-02 20:06:09 字数 262 浏览 5 评论 0原文

我有一个 C# Windows 窗体应用程序。

我上面有一个 TabControl,根据用户设置,将动态使用 TabControl.Controls.Add 将一组特定的 TabPages 添加到选项卡。 TabPage 并不特殊,它们只有按钮和文本。

动态地执行此操作,即使对于少量选项卡,也非常慢。每次“Add”调用,或使用“AddRange”一次添加一堆都会导致半秒左右的等待。

SuspendLayout 没有任何效果。

有什么建议吗?

I have a C# Windows Forms app.

I have a TabControl on it, and depending on user settings, will dynamically use TabControl.Controls.Add to add a specific set of TabPages to the tabs. The TabPages aren't special, they just have buttons and text.

Doing this dynamically, even for small amount of tabs, is slow as hell. Every "Add" call, or using "AddRange" to add a bunch at once results in a half second or so of waiting.

SuspendLayout has no effect.

Any suggestions?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

茶底世界 2024-08-09 20:06:09

这不是添加控件,而是我的一个控件上有一个PropertyGrid,并且Form_Load设置了SelectedObject,这是一个缓慢的操作。

PropertyGrid 速度慢是另一个问题!

It wasn't the add control, it was one that one of my control has a PropertyGrid on it, and the Form_Load sets the SelectedObject, which is the slow operation.

PropertyGrid being slow is a different question!

落日海湾 2024-08-09 20:06:09

添加时尝试 tabcontrol.Enabled = False,完成后尝试 True。

Try tabcontrol.Enabled = False while you add, then True when done.

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