Example #1
0
 public void InvalidateGlobalRect(RectangleF globalRect)
 {
     if (scMgr != null && suspendLayoutCount == 0)
     {
         ScMgr.Refresh(globalRect);
     }
 }
Example #2
0
 public void Invalidate(RectangleF rc)
 {
     if (scMgr != null && suspendLayoutCount == 0)
     {
         rc = TransLocalToGlobal(rc);
         ScMgr.Refresh(rc);
     }
 }
Example #3
0
        public new void Show()
        {
            if (scMgr != null)
            {
                scMgr.Refresh();
            }

            base.Show();
        }
Example #4
0
        public void Refresh()
        {
            if (scMgr != null && suspendLayoutCount == 0)
            {
                ScMgr.Refresh(drawBox);
            }

            if (ShadowLayer != null)
            {
                ShadowLayer.Refresh();
            }
        }