如何在 Visual Basic 中使用计算机中未安装的字体并且字体文件位于我的资源中?
我试过这个,但我猜它只在文件不在资源上时才有效。
Imports System.Drawing.Text
Public Class frmTitle
Private Sub frmTitle_Load(sender As Object, e As EventArgs) Handles MyBase.Load
Dim myFont As New PrivateFontCollection()
myFont.AddFontFile(My.Resources.font_space_invaders)
lblPressStart.Font = New Font(myFont.Families(0), 20, FontStyle.Bold)
End Sub
End Class