I\'ve tried the following code:
this.balancePanel.Location.X = this.optionsPanel.Location.X;
to change the location of a panel that I mad
You need to pass the whole point to location
var point = new Point(50, 100); this.balancePanel.Location = point;