public static Point TopCenter(Control Control1, Control Control2)
{
    return new Point((Control1.Width / 2) - (Control2.Width / 2), 0);
}
Button.Location = TopCenter(this, Button);