ComponentFactory.Krypton.Toolkit.ScreenObscurer.ObscurerForm.ObscurerForm C# (CSharp) Method

ObscurerForm() public method

public ObscurerForm ( ) : System
return System
            public ObscurerForm()
            {
                // Prevent automatic positioning of the window
                StartPosition = FormStartPosition.Manual;
                Location = new Point(-int.MaxValue, -int.MaxValue);
                Size = Size.Empty;

                // We do not want any window chrome
                FormBorderStyle = FormBorderStyle.None;

                // We do not want a taskbar entry for this temporary window
                ShowInTaskbar = false;
            }