Close form without destroying C # visual Studio

1

I'm using a form in my application that needs to be loaded quickly, but when I close that form it takes forever to load, is there a way I can close the form but it does not reload every time I open it?

That way I close the form:

private void pbFechar_Click(object sender, EventArgs e)
    {
        this.Close();
    }
    
asked by anonymous 05.06.2018 / 00:55

0 answers