在 RichTextBox 中,設定 Font 屬性為標楷體,但輸入英文字時,並不是標楷體,該如何輸入英文時,也是標楷體
1. 問題描述
在 RichTextBox 中,設定 Font 屬性為標楷體,但輸入英文字時,並不是標楷體,如下圖所示,該如何輸入英文時,也是標楷體
2. 方法
請參考以下程式碼,設定 LanguageOption 屬性。
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
Me.RichTextBox1.LanguageOption = RichTextBoxLanguageOptions.AutoFont
End Sub
執行結果
3. 參考