在C#中创建面板布局时遇到问题

3

我想创建一个布局管理器,可以将面板分成多个单元格,用户可以通过指定单元格(行,列)来向该面板添加组件。当重新调整面板大小时,应更新单元格的宽度和高度(这是问题所在,它不会重新调整单元格的大小)。这些类本身是可用的,但是调整大小时它不会更新单元格的大小,甚至似乎没有调用LayoutManager::SetBounds(int, int)。我之所以要创建一个单独的类,是因为我打算在其他容器中使用相同的布局管理器,例如GroupBox。以下是我的代码:

public class Insets
{
    public int bottom = 0;
    public int top = 0;
    public int left = 0;
    public int right = 0;

    public Insets(int top, int left, int bottom, int right) {
        this.top = top;
        this.left = left;
        this.bottom = bottom;
        this.right = right;
    }
}

/*
*  LayoutManager class
*/

using System;
using System.Drawing;
using System.Windows.Forms;
using System.Collections.Generic;



public class LayoutManager
{
    public enum Constraints{
        HORIZONTAL,
        VERTICAL,
        NONE
    };

    public Insets insets = new Insets(0, 0, 0, 0);
    public Constraints fill = Constraints.NONE;
    public Panel container = null;
    public int cellheight = 1;
    public int cellwidth = 1;

    private List <int> indices = new List <int>();
    private int columns = 1;
    private int rows = 1;
    private int dh = 0;
    private int dw = 0;

    public LayoutManager(){
    }
    private int Index2DTo1D(int row, int column){
        return (column + (row * columns));
    }
    private int Index1DToRow2D(int index){
        return index / columns;
    }
    private int Index1DToColumn2D(int index){
        return index / rows;
    }
    private void SetGridMatrix(int rows, int columns) {
        if (rows >= this.rows){
            this.rows = rows + 1;
        }
        if (columns >= this.columns){
            this.columns = columns + 1;
        }
    }
    public void RepaintChildrenComponents() {
        if(container != null){
            foreach(Control control in container.Controls){
                ((CheckBox)control).Text = container.Width.ToString();
            }       
        }
    }
    public void SetBounds(int width, int height) {
        SetCellsDimensions(width, height);
        RepaintChildrenComponents();
    }
    public void SetCellsDimensions(int width, int height){
        this.dw = width / columns;
        this.dh = height / rows;
    }
    public void SetContainer(ref Panel container) {
        this.container = container;
    }
    public Point GetChildComponentXY(int x, int y){
        if(x >= 0 && y >= 0){
            return new Point((x * dw) + insets.right, (y * dh) + insets.top);
        }
        throw new System.ArgumentOutOfRangeException("");
    }
    public Size GetComputedComponentSize(){
        return new Size((cellwidth * dw) - (insets.left + insets.right),
                        (cellheight * dh) - (insets.top + insets.bottom));            
    }
    public void AddComponent(Control control, Point location, LayoutManager.Constraints fill){
        if(container != null && control != null){
            indices.Insert(container.Controls.Count, Index2DTo1D(location.X, location.Y));
            container.Controls.Add(SetChildComponentBounds(control, location));
            SetGridMatrix(location.X, location.Y);
            SetCellsDimensions(container.Width, container.Height);
        }else{
            throw new NullReferenceException("");
        }
    }
    protected Control SetChildComponentBounds(Control control, Point location) {
        control.Location = GetChildComponentXY(location.X, location.Y);
        control.Size = GetComputedComponentSize();
        return control;
    }
    public void AddComponent(Control control, Point location){
        AddComponent(control, location, LayoutManager.Constraints.NONE);
    }
}

/*
*
* JPanel class
*/


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Drawing;
using System.Windows.Forms;


class JPanel : Panel
{
    private LayoutManager layman;

    public JPanel(){
        layman = new JComponent.LayoutManager();

        Panel container = this;
        layman.SetContainer(ref container);


        string[] elems = { "Multiplication", "Division", "Addition", "Subtraction"};
        int e = 0;

        this.Size = new Size(300, 125);

        foreach(string str in elems){

            CheckBox box = new CheckBox();
            box.Text = str;
            layman.AddComponent(box, new Point(0, e++));
            //this.Controls.Add(box);
        }

    }
    public JPanel(LayoutManager layman) {
        LayoutManager = layman;
    }

    protected override void SetBoundsCore(int x, int y, int width, int height, BoundsSpecified specified){
        if(layman != null){
            layman.SetBounds(width, height);
        }
        base.SetBoundsCore(x, y, width, height, specified);
    }
    public LayoutManager LayoutManager{
        set{
            layman = value;
        }
        get{
            return layman;
        }
    }
}

你是否正在尝试创建自定义数据网格(UserControl/OwnerDraw)? - Peter Larsen 'CPH'
我同意上面的发帖者,这对我来说似乎正是网格所做的事情。如果您想要将网格功能添加到其他控件中,为什么不只需将网格添加到控件的子级中,并按照您想要的方式设置它。您可以轻松创建一个方法,该方法会自动为您完成此操作。 - Nomad101
1个回答

0
请查看TableLayoutPanel类。我认为这个控件正好可以实现您想要的功能。TableLayoutPanel允许您在表单编辑器中定义行/列,并在程序中将控件放置在单元格中,合并行/列,根据内容自动调整面板大小或根据面板大小自动调整内容大小。
这是一个非常有趣的关于Windows窗体布局如何工作的文档:

https://docs.google.com/viewer?a=v&q=cache:nePz-uaPReYJ:www.windowsclient.net/samples/go%2520to%2520market/layout/layoutgtm.doc+Whidbey+Layout+tablelayoutpanel&hl=de&gl=de&pid=bl&srcid=ADGEEShlobh-RfSTegC1NuOc72m0vRPu6RsF3USTSPnSasU-9qSklTbJzclRol6Nxg5sxEUXZOWYZwgrSdZdAjJ5EXhCft7qj5jBr4-kkkX6380-0itVaHkG-TAvK4KvNtDymEFlUXM6&sig=AHIEtbTnyasKOG5tuZwub59LBw8UeZL8Lg

不幸的是,我只能通过谷歌搜索缓存找到文档。原始链接似乎已被删除。


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接