我制作了一个小程序(在visual studio 2013中),它只是在Form1中显示一个标签,在关闭它时显示一条消息。但是,当我打开它时,它的加载光标永远不会停止。有人可以帮帮我吗?
Public Class Form1
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
End Sub
Private Sub PictureBox1_Click(sender As Object, e As EventArgs)
End Sub
Private Sub Form_FormClosing(ByVal sender As Object, ByVal e As System.Windows.Forms.FormClosingEventArgs) Handles Me.FormClosing
Dim response As MsgBoxResult
response = MsgBox("Skype must be restarted.", MsgBoxStyle.Exclamation + MsgBoxStyle.OkOnly, "Confirm")
If response = MsgBoxResult.Ok Then
Me.Dispose()
End If
End Sub
结束班
答案 0 :(得分:0)
看,我无法清楚地说明错误是什么,但我发现,因为你得到错误的两个主要因素是:
Visual Studio
环境需要很长时间来加载它的功能。您需要转到form
的属性并将光标属性设置为default
或您想要的任何内容。如果您遇到第二个问题,这可以帮您完成工作。
您可以为不同的控件设置不同的cursor
属性。
我希望这有帮助!