C++ DataGrid 的实现
我注意到内置的 C# DataGrid 性能不佳(对于我正在做的事情来说还不够好)。
是否有 DataGrid 的 C++ 实现?
我需要一个希望具有大致相同功能和 COM 接口或可以使用托管 .NET 代码访问的接口。
(如果没有可访问性,我可以用 C++/CLI 稍微包装一下)
谢谢
I've noticed that the built in C# DataGrid doesn't have great performance (not good enough for what I'm doing anyway).
Is there a C++ implementation for a DataGrid ?
I need one that hopefully has about the same functinality and a COM interface or something that can be access with managed .NET code.
(If there's nothing with accessability I can wrap it a bit with C++/CLI)
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是这个还是这个 无论如何都有帮助吗?
Does this or this help in anyways?
从
DataGridView
继承一个新类,并在其构造函数中设置DoubleBuffered=true
。看起来违反直觉,但却有效。Inherit a new class from
DataGridView
and in its constructor setDoubleBuffered=true
. Seems counter-intuitive, but works.