如何在 Microsoft DataGridView 中使用 Infragistics UltraDropDown
我想在 Microsoft DataGridView 的特定列上显示 Infragistics UltraDropDown 控件。
我该怎么做?
谢谢
I want to show a Infragistics UltraDropDown control on a particular column of a microsoft DataGridView.
How can i do this?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你不能。该控件未实现
IDataGridViewEditingControl
,请参阅 http:// msdn.microsoft.com/en-us/library/7tas5c80.aspx。不过,您可以尝试创建一个继承
UltraDropDown
的控件并实现该接口,但这并不是一件小事。You can't. The control does not implement
IDataGridViewEditingControl
, see http://msdn.microsoft.com/en-us/library/7tas5c80.aspx.You could however try to create a control inheriting
UltraDropDown
and implementing the interface, but that's not a trivial thing.