Exemple #1
0
        protected virtual void OnResize(int width, int height)
        {
            InputOffsets  = OnMakeInputs(width, height);
            OutputOffsets = OnMakeOutputs(width, height);

            ParentLayoutCtrl?.UpdateComponentInfo(new FIRComponentUpdate(Operation, GetCurrentSize(), InputOffsets, OutputOffsets));
        }
Exemple #2
0
        protected override void OnResize(int width, int height)
        {
            if (IsTitleHeightKnown)
            {
                InputOffsets  = OnMakeInputs(width, height);
                OutputOffsets = OnMakeOutputs(width, height);

                ParentLayoutCtrl?.UpdateComponentInfo(new FIRComponentUpdate(Operation, GetCurrentSize(), InputOffsets, OutputOffsets));
            }
        }
Exemple #3
0
 protected override void OnFirstParametersSetAsync()
 {
     ParentLayoutCtrl?.AddUINode(this);
 }