我在c#中创建了一个具有devexpress网格,标签和按钮的表单类,所有这些都被声明为protected。我创建了该表单的子类,但是当我尝试移动或调整控件大小时,网格被锁定(只有网格,而不是其他控件)。
我检查了锁定的属性,但它设置为false
有什么想法吗? 感谢
答案 0 :(得分:1)
我用DevExpress 9.2尝试了这个场景,我没有移动网格的问题。
这就是我所做的:
class FormSubClass : Form1
{
public FormSubClass()
{
this.simpleButton1.Click += new EventHandler(simpleButton1_Click);
}
void simpleButton1_Click(object sender, EventArgs e)
{
this.gridControl1.Location = new Point(gridControl1.Location.X + 100, gridControl1.Location.Y);
}
}
您可以找到我的示例应用here。
答案 1 :(得分:1)
这是Visual Studio 2008和DevExpress之间的问题。您可以阅读本文的解决方案: