vb2008中怎样使粗体字和斜体字一起出现

2024-12-20 05:30:00
推荐回答(2个)
回答1:

用RichtextBox
'--------------------
百度VB2010(VB.NET)吧建设发展中,需要你的支持和帮助!!!
快加入我们吧!发表你的疑问,经验,程序,分享..
让我们共同进步!

回答2:

Dim cx As New FontStyle
If Opt.粗体 Then
cx = cx + FontStyle.Bold
End If
If Opt.斜体 Then
cx = cx + FontStyle.Italic
End If
mfont = New Font(CType(Opt.字体, String), Opt.大小, cx)