嗨,我有一个按钮,我想更改文本框的位置,谁能告诉我怎么做。我尝试了下面评论过的 tb location 东西,但它仍然有效。
代码在这里
Private Sub ExpandBtn_Click(sender As Object, e As EventArgs) Handles ExpandBtn.Click
expandMenu.Visible = False
Me.Height = 345
Me.Width = 820
'nameTB.location = (480 , 100)
grdDataGrid.Visible = True
'expand it to a certain size
End Sub