public CVariableNode(NodeGraphManager ngm, Guid guid, FlowChart flowChart, CNodeType nodeType) : base(ngm, guid, flowChart, nodeType)
#endif
        {
            Header = typeof(T).Name;
            HeaderBackgroundColor   = Brushes.Black;
            HeaderFontColor         = Brushes.White;
            AllowCircularConnection = false;
        }
Example #2
0
        public CNodeBase(NodeGraphManager ngm, Guid guid, FlowChart flowChart, CNodeType nodeType) : base(ngm, guid, flowChart)
        {
#endif
            _NodeType          = nodeType;
            AllowEditingHeader = true;
        }
Example #3
0
 public CNodeBase(Guid guid, FlowChart flowChart, CNodeType nodeType) : base(guid, flowChart)
 {
 public VariableNode(Guid guid, FlowChart flowChart, CNodeType nodeType) : base(guid, flowChart, nodeType)