我有一个包含标签页的应用程序,在其中一个标签页上我放置了数据网格视图控件。现在我想在标签页的调整大小事件上修改网格视图位置。这是我的代码的样子..
System.Drawing.Point pTabCntrlLocn= tabCntrl.Location;
System.Drawing.Point pDatGrdLocn = DataGrid.Location
int iCntrlYLocn = pDatGrdLocn .Y + 50;
DataGrid.Location = new System.Drawing.Point(pDatGrdLocn .Location.X, iCntrlYLocn);
我在最后一行代码中没有出现异常,但我也看不到新位置的控件,也看不到控件位置值的修改。
请帮助我跟踪丢失的链接。