我可以将 flowlayoutpanel 像列表框一样处理吗

发布于 2024-07-16 20:18:51 字数 147 浏览 11 评论 0原文

有没有办法让选定的项目并检测它何时发生变化。

想要具有列表框类型行为但我没有字符串的推荐最佳实践是什么,我有我想从上到下列出的用户控件。

flowlayoutpanel 是执行此操作的正确方法吗?还是有其他方法可以为我提供列表框行为和事件。

is there ways to have a selecteditem and detect when it changes.

what is the recommended best practices for wanting to have listbox type behavior but i dont have strings, i have user controls that i want to list from top to bottom.

is flowlayoutpanel the correct way to do this or is there any other way that gives me the listbox behavior and events.

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

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

发布评论

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

评论(1

梦断已成空 2024-07-23 20:18:51

您可以在用户控件中的控件上使用 GotFocus 事件来确定它们何时获得焦点。

或者,您可以使用 DataGridView 控件,将 UserControls 添加到其上的自定义列。 有一篇文章在 MSDN 上,基本上您在用户控件中实现了 IDataGridViewEditingControl 接口。

You could use the GotFocus event on your controls in your usercontrols to determine when they get the focus.

Alternatively you could use a DataGridView control, adding the UserControls to a custom column on it. There's an article on MSDN on this, basically you implement the IDataGridViewEditingControl interface in your usercontrol.

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