Ejemplo n.º 1
0
        public VoidCallBlock(GCommand command)
        {
            InitializeComponent();

            _GCommand = command;

            _HoleList = BlockUtils.SetContent(command, WrapContent);
            _HoleList.Add(NextConnectHole);

            InitializeBlock();
        }
Ejemplo n.º 2
0
        // 생성자
        public ObjectCallBlock(GCommand command)
        {
            InitializeComponent();

            _GCommand = command;

            _HoleList    = BlockUtils.SetContent(command, WrapContent, new BrushConverter().ConvertFromString("#FF79297E") as Brush);
            _GObjectList = new List <GBase> {
                GObject
            };

            InitializeBlock();
        }