Exemplo n.º 1
0
 public void ShowPortContextValues(IPortValue port)
 {
     ContextContentWindow.Open(new ContextDescription()
     {
         Data  = port,
         Label = port.ItemName
     });
 }
Exemplo n.º 2
0
        public void ShowPortsData()
        {
            _content.Clear();
            foreach (var nodePort in NodeData.SourceNode.Ports)
            {
                _content.Add(new ContextDescription()
                {
                    Data  = nodePort.Value,
                    Label = nodePort.ItemName
                });
            }

            ContextContentWindow.Open(_content).Focus();
        }