ACAT.Extensions.Default.UI.Dialogs.ScreenLockForm.ScreenLockForm_FormClosing C# (CSharp) Method

ScreenLockForm_FormClosing() private method

Form is closing. Release resources
private ScreenLockForm_FormClosing ( object sender, FormClosingEventArgs e ) : void
sender object event sender
e FormClosingEventArgs event args
return void
        private void ScreenLockForm_FormClosing(object sender, FormClosingEventArgs e)
        {
            _animationManager.Dispose();

            _animationManager = null;

            _widgetManager.Dispose();

            if (_windowOverlapWatchdog != null)
            {
                _windowOverlapWatchdog.Dispose();
            }
        }