开发者

Problem modifying a dxGrdid in subclass form

开发者 https://www.devze.com 2022-12-24 11:43 出处:网络
I made a form class in c# that has a devexpress grid, a label and a button, al开发者_Go百科l of them are declared as protected. I created a subclass of that form but, when I try to move or resize the

I made a form class in c# that has a devexpress grid, a label and a button, al开发者_Go百科l 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


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


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.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号