Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在该位置放置一个具有矩形大小的控件。
我试过这样:
Me.RichTextBox1.SetBounds(myRectangle)
但是,没有接受矩形的重载 SetBounds。这真的让我很困惑。
您可以改为设置控件的边界:
Me.RichTextBox1.Bounds = myRectangle