看起来像一个愚蠢的问题,但我尝试了以下(其中“我”是一个 MDIParent 形式):
Dim frmNotif As New frmNotifica
With frmNotif
.MdiParent = Me
.StartPosition = FormStartPosition.Manual
.Location = New Point(ClientSize.Width - .Width, ClientSize.Height - .Height)
.Show()
End With
但它不起作用。
想法?