ContextNode.Links 屬性
取得 ContextLink 物件的集合,這些物件表示與其他 ContextNode 物件之間的關聯性。
命名空間: System.Windows.Ink
組件: IAWinFX (在 IAWinFX.dll 中)
語法
'宣告
Public ReadOnly Property Links As ContextLinkCollection
'用途
Dim instance As ContextNode
Dim value As ContextLinkCollection
value = instance.Links
public ContextLinkCollection Links { get; }
public:
property ContextLinkCollection^ Links {
ContextLinkCollection^ get ();
}
/** @property */
public ContextLinkCollection get_Links()
public function get Links () : ContextLinkCollection
屬性值
型別:System.Windows.Ink.ContextLinkCollection
ContextLink 物件的集合,用來表示與其他 ContextNode 物件之間的關聯性。
備註
如需連結所述之關聯性類型的詳細資訊,請參閱 ContextLink 類別。
範例
下列範例會尋找所有連結至名為 selectedNode 之 ContextNode 節點的節點。如果 selectedNode 不是目的節點,則會將目的節點加入至名為 destinationNodes 的 ArrayList。如果 selectedNode 不是來源節點,則會將來源節點加入至名為 sourceNodes 的 ArrayList。
Dim destinationNodes As New ArrayList()
Dim sourceNodes As New ArrayList()
' Find all the nodes that link to the currently selected node.
Dim link As ContextLink
For Each link In selectedNode.Links
If link.DestinationNode <> selectedNode Then
destinationNodes.Add(link.DestinationNode)
End If
If link.SourceNode <> selectedNode Then
sourceNodes.Add(link.SourceNode)
End If
Next link
ArrayList destinationNodes = new ArrayList();
ArrayList sourceNodes = new ArrayList();
// Find all the nodes that link to the currently selected node.
foreach (ContextLink link in selectedNode.Links)
{
if (link.DestinationNode != selectedNode)
{
destinationNodes.Add(link.DestinationNode);
}
if (link.SourceNode != selectedNode)
{
sourceNodes.Add(link.SourceNode);
}
}
平台
Windows Vista
.NET Framework 和 .NET Compact Framework 並不支援各種平台的所有版本。如需支援平台版本的相關資訊,請參閱 .NET Framework 系統需求。
版本資訊
.NET Framework
支援版本:3.0