以子类形式修改 dxGrdid 时出现问题
我用 C# 创建了一个表单类,它有一个 devexpress 网格、一个标签和一个按钮,所有这些都被声明为受保护的。我创建了该表单的子类,但是当我尝试移动控件或调整控件大小时,网格被锁定(仅网格,而不是其他控件)。
我检查了锁定的属性,但它设置为 false
知道吗? 谢谢
I made a form class in c# that has a devexpress grid, a label and a button, all of them are declared as protected. I created a subclass of that form but, when I try to move or resize the controls, the grid is locked (only the grid, not the other controls).
I checked the locked property, but it's set on false
Any idea?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是 Visual Studio 2008 和 DevExpress 之间的问题。您可以阅读本文中的解决方案:
http://www.devexpress .com/Support/Center/KB/p/A2912.aspx
it is a problem between Visual Studio 2008 and DevExpress. You can read the solution on this article:
http://www.devexpress.com/Support/Center/KB/p/A2912.aspx
我用 DevExpress 9.2 尝试了这个场景,移动网格没有任何问题。
这就是我所做的:
您可以在此处找到我的示例应用程序。
I tried out that scenario with DevExpress 9.2 and I had no problem moving the grid.
Thats what i did:
You can find my sample app here.