System.Windows.Forms.ApplicationBehaviour.Update C# (CSharp) Method

Update() private method

private Update ( ) : void
return void
        private void Update()
        {
            if (_lastWidth != UnityEngine.Screen.width || _lastHeight != UnityEngine.Screen.height)
            {
                System.Drawing.Size deltaSize = new System.Drawing.Size(
                    (int)(_lastWidth - UnityEngine.Screen.width),
                    (int)(_lastHeight - UnityEngine.Screen.height));
                for (int i = 0; i < _controller.ModalForms.Count; i++)
                    _controller.ModalForms[i].AddjustSizeToScreen(deltaSize);
                for (int i = 0; i < _controller.Forms.Count; i++)
                    _controller.Forms[i].AddjustSizeToScreen(deltaSize);
                _controller.UpdatePaintClipRect();
            }
            _lastWidth = UnityEngine.Screen.width;
            _lastHeight = UnityEngine.Screen.height;

            _controller.Update();
        }