WindowsFormsApplicationBase.UseCompatibleTextRendering 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
在衍生類別中覆寫時,此屬性允許為應用程式的表單指定預設的文字轉譯引擎。
protected:
static property bool UseCompatibleTextRendering { bool get(); };
protected static bool UseCompatibleTextRendering { get; }
static member UseCompatibleTextRendering : bool
Protected Shared ReadOnly Property UseCompatibleTextRendering As Boolean
屬性值
Boolean
. 的值 False
表示應用程式應該使用 Visual Basic 2005 的預設文字轉譯引擎。
True
則指出應用程式使用 Visual Basic .NET 2002 和 Visual Basic .NET 2003 的文字轉譯引擎。
範例
此範例示範如何覆 UseCompatibleTextRendering 寫 屬性,將 GDI+ 文字轉譯引擎設定為應用程式的預設轉譯引擎。
Protected Overloads Shared ReadOnly Property UseCompatibleTextRendering() As Boolean
Get
' Use the GDI+ text rendering engine.
Return True
End Get
End Property
您必須在應用程式事件的 [程式代碼編輯器] 視窗中輸入此程式碼。 如需詳細資訊,請參閱 Application Page, Project Designer (Visual Basic)。
備註
根據預設,這個屬性會 False
傳回 ,表示Visual Basic 2005的 GDI 文字轉譯引擎會用於應用程式的表單。 不過,您可以覆寫此屬性以傳回 True
並指定應用程式的窗體使用 GDI+ 文字轉譯引擎,此引擎用於 Visual Basic .NET 2002 和 Visual Basic .NET 2003。
這個屬性是由建構函式呼叫 WindowsFormsApplicationBase 。
覆寫 類別方法的程式 WindowsFormsApplicationBase 代碼應該在預設隱藏的 ApplicationEvents.vb 檔案中輸入。
存取用於覆寫成員的程式代碼編輯器視窗 |
1.在 [方案總管] 中選取專案時,單擊 [專案] 功能表上的 [屬性]。 2. 按一下 [應用程式]索引標籤。 3.按兩下 [ 檢視應用程式事件 ] 按鈕以開啟程式代碼編輯器。 如需詳細資訊,請參閱 Application Page, Project Designer (Visual Basic)。 |