发布网友 发布时间:2022-04-23 04:36
共1个回答
热心网友 时间:2023-09-21 09:39
VB程序设计让标签移到右上角可使用Move方法实现。
Move 方法,用以移动 MDIForm、Form 或控件。不支持命名参数。
说明
只有 left
参数是必须的。但是,要指定任何其它的参数,必须先指定出现在语法中该参数前面的全部参数。例如,如果不先指定 left 和 top 参数,则无法指定 width
参数。任何没有指定的尾部的参数则保持不变。
实现代码:
Private Sub Form_Click()
Dim left, top, width, height
top = 0
left = Me.ScaleWidth - Label1.width
width = Label1.width
height = Label1.height
Label1.Move left, top, width, height
End Sub