工具/材料:Microsoft Visual Studio 2010。
1、首先在桌面上,点击“Microsoft Visual Studio 2010”图标。
2、然后在该界面中,选中左侧“工具箱”里“Label”控件。
3、之后在该界面中,将“Label”控件拖到Form窗体中。
4、接着在该界面中,选择右侧“属性”里“BorderStyle”为“FixedSingle”选项。
5、最后在该界面中,控件Label怎样显示边框。
以VB6.0为例:
设置label控件属性BorderStyle 为 1,可显示label控件边框。
Private Sub Command1_Click()
Label1.Caption = "VB小白问题 如何在点击button之后让label里显示文字"
End Sub
Private Sub Form_Load()
Label1.BorderStyle = 1
End Sub
外观属性中:BorderStyle 设置为solid,BorderWidth设置为1px,可以显示细线边框