private void pBx_Paint(object sender, System.Windows.Forms.PaintEventArgs e)
{
     for(int i=2;i<=7;i++)
{
    e.Graphics.DrawLine(new Pen(Color.Black,5 ), new Point(this.pBx .Location .X + 110*(i-1), this.pBx .Location .Y ), new Point(this.pBx .Location .X + 110*(i-1) ,0 )); 
}
}这段代码能不能达到均匀分割pBx的目的,最关键是的这pBx嵌套在panel中,我是怎么调也分割不均匀了,另外这里的pBx .Location 是不是应该指相对应panel的Location 呢,我应该怎么改变一下,才能达到我的目的,
注 :pBx的Location 属性中的值是(20,88),panel的Location 在属性中是(86,88)各位给点建议