RichTextbox のテキストで DrawString を行う方法を知りたいのですが、実行しましたが、Bold、Italic、Align などのテキスト フォーマットが描画されません。
Private Sub PictureBox4_Paint(ByVal sender As Object, ByVal e As System.Windows.Forms.PaintEventArgs) Handles PictureBox4.Paint
Dim newImage As Image = Panel1.BackgroundImage
Dim fontt As New Font("Tahoma", 10)
Dim format As New StringFormat
format.Alignment = StringAlignment.Far
e.Graphics.DrawImage(newImage, 0, 0)
e.Graphics.DrawString(RichTextBox1.Text, fontt, Brushes.Silver, 10, 10)
End Sub
PictureBox4_Paint
フォームの読み込み時に文字列を描画するために使用します。助けてください
ありがとう :)