internal void ShowAwaitingConnections(IConnectable aConnectable) { foreach (GraphElement e in FConnectables) { IConnectable c = e.Connectable; if ((aConnectable.ConnectableType != c.ConnectableType) && (c.CanConnectTo(aConnectable))) { c.AwaitingConnection = true; } } }