예제 #1
0
        protected override void OnWidthHeightSet()
        {
            if (GraphInst != null)
            {
                GraphInst.ResizeWith(width, height);
            }

            Updated();
        }
예제 #2
0
 public override void SetSize(int w, int h)
 {
     base.SetSize(w, h);
     GraphInst?.ResizeWith(w, h);
 }