1,453
社区成员
发帖
与我相关
我的任务
分享
Public Class Form3
Private Sub Form3_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Label1.BackColor = Color.Transparent
Label1.BorderStyle = 1
Label1.Text = ""
TextBox1.Visible = False
TextBox1.Text = ""
End Sub
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Me.Close()
End Sub
Private Sub Label1_Click1(ByVal sender As Object, ByVal e As System.EventArgs) Handles Label1.Click
TextBox1.Visible = True
TextBox1.Focus()
End Sub
Private Sub TextBox1_LostFocus(ByVal sender As Object, ByVal e As System.EventArgs) Handles TextBox1.LostFocus
Label1.Text = TextBox1.Text
TextBox1.Visible = False
End Sub
End Class
文本出现滚动条之后只要滚动信息就会模糊Option Explicit
Private Sub Form_Load()
Label1.BackStyle = 0
Label1.BorderStyle = 1
Label1.Caption = ""
Text1.Visible = False
Text1.Text = ""
End Sub
Private Sub Label1_Click()
Text1.Visible = True
Text1.SetFocus
End Sub
Private Sub Text1_LostFocus()
Label1.Caption = Text1.Text
Text1.Visible = False
End Sub