C#Winform动态调整FlowLayoutPanel的控件中位置

            this.flowLayoutPanel1.Controls.SetChildIndex(this.button1, 1);
            this.flowLayoutPanel1.Controls.SetChildIndex(this.listView1, 2);
            this.flowLayoutPanel1.Controls.SetChildIndex(this.button2, 3);
            this.flowLayoutPanel1.Controls.SetChildIndex(this.button3, 4);
            this.flowLayoutPanel1.Controls.SetChildIndex(this.button4, 5);

你可能感兴趣的:(C#Winform动态调整FlowLayoutPanel的控件中位置)