📄 localizedform.vb
字号:
Public Class LocalizedForm
Private Sub btnBadResource_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnStringResource.Click
'Load the error message from the String resource file
Dim res As New Resources.ResourceManager("Resource_Files.StringResources", GetType(LocalizedForm).Assembly)
Me.lblInformation.Text = res.GetString("Error_Unable_To_Load")
End Sub
Private Sub btnResX_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnResX.Click
'Load the welcome message using the designer generated class
MsgBox(My.Resources.CustomResources.Welcome_Message)
End Sub
End Class
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -