📄 resourceform.vb
字号:
Public Class ResourceForm
Private Sub btnBadResource_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnBadResource.Click
'Demonstrates poor managment of resources - here strings are hardcoded
'in the code and an image is loaded from a content file.
Me.lblInformation.Text = "Information about the DJ Skype image that we have been able to load (the hard way)" & _
" from a file that has been packaged with this application"
Dim img As New Bitmap("DJ Skype.png")
Me.pctPhoto.Image = img
End Sub
End Class
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -