繁体   English   中英

Winforms FlowLayoutPanel使用自动调整大小控件删除不需要的空格

[英]Winforms FlowLayoutPanel remove unneeded spaces with autosize controls

我有FlowLayoutPanel

AutoScroll = True

FlowDirection = LeftToRight

WrapContents = True

动态添加的控件具有相同的宽度,高度为 AutoSize 所以面板就像这样 ,在物品之间有垂直空间。 由于行的高度由最大控件高度管理。 所以,我想删除这些不必要的空间,而最终的结果会是怎样这样

如果使用FlowLayoutPanel无法做到这一点,完美地完成它的正确想法是什么?

  1. 它是一个矩阵,应该像矩阵一样对待。
  2. 我认为Panel在这里比FlowLayoutpanel更合适。
  3. 请参阅我的建议和输出以实现这样的行为。

澄清:此代码需要改进以适应所有可能的情况,但您可以从中学习如何处理此类问题的基本思路。

public partial class Form1 : Form
{
    public Form1()
    {
        InitializeComponent();
    }


    private void Form1_Load(object sender, EventArgs e)
    {
        Example();
    }

    // space beetween controls (top and right)
    public int MarginSpace = 8;
    // first element location
    public Point StartPoint = new Point(10, 10);
    private void Example()
    {
        var fixesWidth = 70;
        List<Label> randomLables = new List<Label>();
        Random rand = new Random();
        // generate lables with random heights
        for (int i = 1; i < 10; i++)
        {
            Label lr = new Label();
            var randheight = rand.Next(60, 120);
            lr.Size = new Size(fixesWidth, randheight);
            lr.Text = i.ToString();
            lr.BackColor = Color.Black;
            lr.ForeColor = Color.White;
            randomLables.Add(lr);
        }

        // check how many elements in one "column" (possible also to add right+left margin)
        var cols = panel1.Width / fixesWidth;
        // create matrix object to get locations of each label
        MyMatrix m = new MyMatrix(cols, randomLables.Count, 15, 70, StartPoint);
        m.SetMatrix(randomLables);
        int counter = 0;
        // pupulate all lables with the points from MyMatrix object
        foreach (Point p in m.pointsMatrix)
        {
            randomLables[counter].Location = p;
            panel1.Controls.Add(randomLables[counter]);
            counter++;
        }
    }
}
class MyMatrix
{
    private int Rows;
    private int TotalElements;
    private int Cols;
    private int Margin;
    private int ElementWidth;
    private Point StartPoint;
    public MyMatrix(int cols, int totalelements, int margin, int elementwidth, Point startingpoint)
    {
        this.Cols = cols;
        this.TotalElements = totalelements;
        this.Margin = margin;
        this.ElementWidth = elementwidth;
        this.StartPoint = startingpoint;

        // calculate number of rows
        Rows = totalelements / cols;
    }

    public List<Point> pointsMatrix = new List<Point>();
    int cellCounter = 0;
    public void SetMatrix(List<Label> Labels)
    {
        for (int i = 0; i < Rows; i++)
        {
            for (int j = 0; j < Cols; j++)
            {

                var x = StartPoint.X + j * (Margin + ElementWidth);
                var y = StartPoint.Y;
                if (cellCounter >= Cols)
                {
                    // find the parallel cell in the row above
                    y = pointsMatrix[cellCounter - Cols].Y + Labels[cellCounter - Cols].Height + Margin;
                }
                else
                {
                    // do nothing it is first row
                }

                Point p = new Point(x, y);
                pointsMatrix.Add(p);
                cellCounter += 1;
            }
        }
    }
}

输出:
在此输入图像描述

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM