📄 frmdownload.vb
字号:
'///////////////////////////////////////////
'This form is just and example of 1 thing you
'might choose to do in the event of a file download.
'There are many good examples of file downloading
'and download managers all over online if you
'choose to implement a download manager.
'///////////////////////////////////////////
Public Class frmDownload
Public DLURL As String
Private Sub frmDownload_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Me.lblInfo.Text = "Confirm download of file: " & _
DLURL
End Sub
Private Sub btnCancel_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnCancel.Click
Me.Close()
End Sub
Private Sub btnOK_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnOK.Click
Me.Close()
End Sub
End Class
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -