Exemplo n.º 1
0
 public override void Init(Rectangle rect)
 {
     base.Init(rect);
     InitRawTopo();
     InitTopoNet();
     _topoView = new TopoNetView <StaticNode, StaticLine>(base._rect, _topoNet);
 }
Exemplo n.º 2
0
        public override void Init(Rectangle rect)
        {
            base.Init(rect);
            _sTopo.Init(rect);

            InitTopoNet();
            _appMatchedTopoList = new List <List <DynamicNode> >();
            MatchApps();

            _topoView = new TopoNetView <DynamicNode, DynamicLine>(base._rect, _topoNet);
            InitOnlineFlags();
        }
Exemplo n.º 3
0
 public override void Init(Rectangle rect)
 {
     base.Init(rect);
     _topoView = new TopoNetView <ComponentNode, ComponentLine>(base._rect, _component.CmpTopoNet);
 }