// Button Maximizar
 private void BMzar_Click(object sender, EventArgs e)
 {
     if (!EstadoForm.StateWindows(this))
     {
         CompStandar.Maximizar(this);
         BMzar.Text  = "m";
         TBUrl.Width = Width - posX;
     }
     else
     {
         Size        = new System.Drawing.Size(1184, 591);
         BMzar.Text  = "M";
         TBUrl.Width = Width - posX;
     }
 }