按代码定位。 C#

时间:2014-01-01 02:59:17

标签: c# datagridview location

我想将dataGridView的Y位置更改为75,我试图通过单击按钮将其移动。

已经尝试了

this.dataGridView1.Location = new Point(
 this.dataGridView1.Location.X,
 this.dataGridView1.Location.Y
);

3 个答案:

答案 0 :(得分:5)

大概你的意思是:

this.dataGridView1.Location = new Point(this.dataGridView1.Location.X, 75);

答案 1 :(得分:1)

更快 this.dataGridView1.Top = 75;

答案 2 :(得分:0)

只需尝试一下:

dataGridView1.Left = 58; //X coordinate
dataGridView1.Top  = 57; //Y coordinate