ARCed.UI.InertButtonBase.RefreshChanges C# (CSharp) Method

RefreshChanges() public method

public RefreshChanges ( ) : void
return void
        public void RefreshChanges()
        {
            if (IsDisposed)
                return;

            bool mouseOver = ClientRectangle.Contains(PointToClient(MousePosition));
            if (mouseOver != this.IsMouseOver)
                this.IsMouseOver = mouseOver;

            this.OnRefreshChanges();
        }