我可以将 flowlayoutpanel 像列表框一样处理吗
有没有办法让选定的项目并检测它何时发生变化。
想要具有列表框类型行为但我没有字符串的推荐最佳实践是什么,我有我想从上到下列出的用户控件。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在用户控件中的控件上使用 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.