IWpfTextViewCreationListener 介面
接聽文字檢視建立的事件。
命名空間: Microsoft.VisualStudio.Text.Editor
組件: Microsoft.VisualStudio.Text.UI.Wpf (在 Microsoft.VisualStudio.Text.UI.Wpf.dll 中)
語法
'宣告
Public Interface IWpfTextViewCreationListener
public interface IWpfTextViewCreationListener
public interface class IWpfTextViewCreationListener
type IWpfTextViewCreationListener = interface end
public interface IWpfTextViewCreationListener
IWpfTextViewCreationListener 類型會公開下列成員。
方法
名稱 | 描述 | |
---|---|---|
TextViewCreated | 文字檢視,有相符的角色建立具有相符的內容類型的文字資料模型時,會呼叫它。 |
回頁首
備註
匯入程式必須指定至少一個ContentTypeAttribute有一個TextViewRoleAttribute,並且應該將其匯出,使用下列屬性:
[Export(typeof(IWpfTextViewCreationListener))]
[ContentType(....)]
[TextViewRole(....)]
使用這個介面,而不是IWpfTextViewConnectionListener如果您的擴充功能不會根據文字檢視的內容類型。 這是因為SubjectBuffersConnected現有的緩衝區的內容類型變更為適當的內容時,會呼叫輸入 (以及連接時檢視),而TextViewCreated只會在文字檢視的建立會呼叫。
範例
如需如何使用這個介面的範例,請參閱逐步解說: 自訂文字檢視。