SDownload.Program.OnLoad C# (CSharp) Method

OnLoad() protected method

This form should not be visible to the user, contains no data
protected OnLoad ( EventArgs e ) : void
e System.EventArgs Not used
return void
        protected override void OnLoad(EventArgs e)
        {
            Visible = false;
            ShowInTaskbar = false;

            base.OnLoad(e);
        }