共用方式為


ContextLinkCollection 類別

包含 ContextLink 物件的集合。

命名空間:  System.Windows.Ink
組件:  IAWinFX (在 IAWinFX.dll 中)

語法

'宣告
Public Class ContextLinkCollection _
    Implements ICollection, IEnumerable
'用途
Dim instance As ContextLinkCollection
public class ContextLinkCollection : ICollection, 
    IEnumerable
public ref class ContextLinkCollection : ICollection, 
    IEnumerable
public class ContextLinkCollection implements ICollection, 
    IEnumerable
public class ContextLinkCollection implements ICollection, IEnumerable

備註

ContextLinkCollection 通常是透過 ContextNode.Links 屬性存取。

範例

下列範例會尋找所有連結至所選取節點的節點。如果找到的節點為來源節點,範例就會將一組相關節點放入名為 sourceNodes 的 ArrayList 中。如果找到的節點為範例節點,範例就會將一組相關節點放入 destinationNodes 中。

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);
    }
}

繼承階層架構

System.Object
  System.Windows.Ink.ContextLinkCollection

執行緒安全

這個型別的任何 Public static (在 Visual Basic 中為 Shared) 成員都具備執行緒安全。並非所有的執行個體成員都是安全執行緒。

平台

Windows Vista

.NET Framework 和 .NET Compact Framework 並不支援各種平台的所有版本。如需支援平台版本的相關資訊,請參閱 .NET Framework 系統需求

版本資訊

.NET Framework

支援版本:3.0

請參閱

參考

ContextLinkCollection 成員

System.Windows.Ink 命名空間

System.Windows.Ink.ContextLink

ContextNode.Links