I have one Panel, I have set the DockStyle as Top but I want to set start location like ( 0, 10), means I want to start this panel from 10 position down from the top. I have tried Padding and Margin but not working, changing the DockStyle also not working.
this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
this.panel1.Location = new System.Drawing.Point(0, 10);