ContextNodeBase.ParentNode 屬性
取得內容節點樹狀目錄中 ContextNodeBase 的父節點。
命名空間: System.Windows.Ink.AnalysisCore
組件: IACore (在 IACore.dll 中)
語法
'宣告
Public ReadOnly Property ParentNode As ContextNodeBase
'用途
Dim instance As ContextNodeBase
Dim value As ContextNodeBase
value = instance.ParentNode
public ContextNodeBase ParentNode { get; }
public:
property ContextNodeBase^ ParentNode {
ContextNodeBase^ get ();
}
/** @property */
public ContextNodeBase get_ParentNode()
public function get ParentNode () : ContextNodeBase
屬性值
型別:System.Windows.Ink.AnalysisCore.ContextNodeBase
內容節點樹狀目錄中 ContextNodeBase 的父節點。
備註
如果這是 RootNode,則會傳回 nullNull 參照 (即 Visual Basic 中的 Nothing)。
範例
這個範例會使用 ContextNodeBase,這是使用 Hashtable 找到的,而後者會使用 System.Windows.Forms.TreeView (名為 theTreeView) 將樹狀節點對應至內容節點。找到父節點之後,就會呼叫名為 MarkNodeAsRed 的方法,將節點的筆劃變更為紅色。
Dim selectedNode As ContextNodeBase = CType(Me.theTreeView.SelectedNode.Tag, ContextNodeBase)
Dim parentNode As ContextNodeBase = selectedNode.ParentNode
If Not (parentNode Is Nothing) Then
MarkNodeAsRed(parentNode)
End If
ContextNodeBase selectedNode = (ContextNodeBase)this.theTreeView.SelectedNode.Tag;
ContextNodeBase parentNode = selectedNode.ParentNode;
if (parentNode != null)
{
MarkNodeAsRed(parentNode);
}
平台
Windows Vista, Windows XP SP2, Windows Server 2003
.NET Framework 和 .NET Compact Framework 並不支援各種平台的所有版本。如需支援平台版本的相關資訊,請參閱 .NET Framework 系統需求。
版本資訊
.NET Framework
支援版本:3.0