form not on top

hi i have a form which is on top of al form sbut i want when i pressa butoon to dispale on top can i do it 
yahnx


Answer this question

form not on top

  • Michel4CE

    protected void OnSomeButton(object, EventArgs)
    {
       this.TopMost = false; //this being a Form class.
    }

  • form not on top