在VB中,可以使用ComboBox控件来实现改变字体的功能。具体步骤如下:
在窗体中添加一个ComboBox控件和一个Label控件。
在窗体的加载事件中,添加以下代码来加载可选的字体列表:
Private Sub Form_Load()
' 加载可选的字体列表
Dim fonts As New Drawing.Text.InstalledFontCollection()
For Each font As FontFamily In fonts.Families
ComboBox1.Items.Add(font.Name)
Next
End Sub
Private Sub ComboBox1_SelectedIndexChanged(sender As Object, e As EventArgs) Handles ComboBox1.SelectedIndexChanged
' 改变Label控件的字体
Label1.Font = New Font(ComboBox1.SelectedItem.ToString(), Label1.Font.Size, Label1.Font.Style)
End Sub
这样,当用户选择不同的字体时,Label控件的字体会相应地改变。