以子类形式修改 dxGrdid 时出现问题

发布于 2024-08-26 09:47:53 字数 160 浏览 3 评论 0原文

我用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

靑春怀旧 2024-09-02 09:47:53

这是 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

つ可否回来 2024-09-02 09:47:53

我用 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);
      }
  }

您可以在此处找到我的示例应用程序。

I tried out that scenario with DevExpress 9.2 and I had no problem moving the grid.

Thats what i did:

   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);
      }
  }

You can find my sample app here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文