C语言中怎样让tablelayoutpanel中控件居中显示?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C语言中怎样让tablelayoutpanel中控件居中显示?相关的知识,希望对你有一定的参考价值。

从“工具箱”中将一个 TableLayoutPanel 控件拖到窗体上。
将 Button 控件从“工具箱”拖到 TableLayoutPanel 控件左上部的单元格中。 Button 在单元格中居中。将 Button 控件的 Anchor 属性值设置为 None。 Button 控件将移动到单元格的中心。

C语言是一门通用计算机编程语言,应用广泛。C语言的设计目标是提供一种能以简易的方式编译、处理低级存储器、产生少量的机器码以及不需要任何运行环境支持便能运行的编程语言。尽管C语言提供了许多低级处理的功能,但仍然保持着良好跨平台的特性。

C语言是一个有结构化程序设计、具有变量作用域(variable scope)以及递归功能的过程式语言。C语言传递参数均是以值传递(pass by value),另外也可以传递指针(a pointer passed by value)。不同的变量类型可以用结构体(struct)组合在一起。

参考技术A

在“Windows 窗体设计器”中选择窗体。 按行和列排列控件 链接地址 TableLayoutPanel 控件允许您轻松地按行和列来排列控件。

    从 “工具箱”中将一个 TableLayoutPanel 控件拖到窗体上。

    将 Button 控件从“工具箱”拖到 TableLayoutPanel 控件左上部的单元格中。 Button 在单元格中居中。

    将 Button 控件的 Anchor 属性值设置为 Left,Right。 Button 控件将拉伸到与单元格的宽度相符。

    将 Button 控件的 Anchor 属性的值设置为 Top,Bottom。 Button 控件将拉伸到与单元格的高度相符。

    将 Button 控件的 Dock 属性值设置为 Fill。 Button 控件将扩展到填满单元格。

    将 Button 控件的 Dock 属性值设置为 None。 Button 控件将恢复到原始大小并移动到单元格的左上角。 “Windows 窗体设计器” 已将 Anchor 属性设置为 Top, Left。

    将 Button 控件的 Anchor 属性值设置为 Bottom,Right。 Button 控件将移动到单元格的右下角。

    将 Button 控件的 Anchor 属性值设置为 None。 Button 控件将移动到单元格的中心。

C# tablelayoutpanel 无法删除填充/边距

【中文标题】C# tablelayoutpanel 无法删除填充/边距【英文标题】:C# tablelayoutpanel unable to remove padding/margin 【发布时间】:2015-12-01 16:54:24 【问题描述】:

基本上,我在删除 tablelayoutpanel 中控件之间的填充/边距时遇到了问题。

我已将 tablelayoutpanel 的边距和内边距设置为 0。 Cellborderstyle 是无。

添加的控件的边距和内边距都设置为 0。

然而,神秘的边缘不断出现。有什么帮助吗?

在这里尝试了这 2 种解决方案以及网络上的其他各种解决方案,但没有一个可以消除两者之间的间距。

Remove spacing between cells in tablelayoutpanel in Windows form?

Is there any way to control thickness of cell border in TableLayoutPanel?

在 VS2010、.net 4.5 上运行

Form1.cs

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace Multiply 
    public partial class Form1 : Form 
        public Form1() 
            InitializeComponent();
            LoadBoard(10, 10);
        

    private void LoadBoard(int col, int row) 
        board.ColumnCount = col;
        board.RowCount = row;
        board.BorderStyle = BorderStyle.FixedSingle;

        float colSize = 100f / col;
        float rowSize = 100f / row;

        board.ColumnStyles[0].SizeType = SizeType.Percent;
        board.ColumnStyles[0].Width = colSize;
        board.RowStyles[0].SizeType = SizeType.Percent;
        board.RowStyles[0].Height = rowSize;


        for (int x = 0; x < col; x++)
            board.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, colSize));

        for (int x = 0; x < row; x++) 
            board.RowStyles.Add(new RowStyle(SizeType.Percent, rowSize));
            for (int y = 0; y < col; y++) 
                board.Controls.Add(CreateButton( x + "," + y ), y, x);
            
            Console.WriteLine(x);
        

    

    private Button CreateButton(string text) 
        Button a = new Button();
        a.Text = text;
        a.Dock = DockStyle.Fill;
        a.Margin = new Padding(0);
        a.Padding = new Padding(0);
        return a;
    


设计师

namespace Multiply 
    partial class Form1 
        /// <summary>
        /// Required designer variable.
        /// </summary>
        private System.ComponentModel.IContainer components = null;

        /// <summary>
        /// Clean up any resources being used.
        /// </summary>
        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
        protected override void Dispose(bool disposing) 
            if (disposing && (components != null)) 
                components.Dispose();
            
            base.Dispose(disposing);
        

        #region Windows Form Designer generated code

        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent() 
            this.board = new System.Windows.Forms.TableLayoutPanel();
            this.SuspendLayout();
            // 
            // board
            // 
            this.board.ColumnCount = 1;
            this.board.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F));
            this.board.Dock = System.Windows.Forms.DockStyle.Top;
            this.board.Location = new System.Drawing.Point(0, 0);
            this.board.Margin = new System.Windows.Forms.Padding(0);
            this.board.Name = "board";
            this.board.RowCount = 1;
            this.board.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
            this.board.Size = new System.Drawing.Size(368, 223);
            this.board.TabIndex = 0;
            // 
            // Form1
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(368, 391);
            this.Controls.Add(this.board);
            this.Name = "Form1";
            this.Text = "Form1";
            this.ResumeLayout(false);

        

        #endregion

        private System.Windows.Forms.TableLayoutPanel board;
    

【问题讨论】:

【参考方案1】:

你追错了,这个差距是Button控件造成的,不是TableLayoutPanel造成的。当您使用设计器将按钮放在表单上时,您可以清楚地看到一些东西,注意选择矩形和按钮表面之间的间隙。

您需要修改按钮以摆脱它或使用不同类型的控件。最简单的方法是让它变平:

    private Control CreateButton(string text) 
        var a = new Button();
        a.FlatStyle = FlatStyle.Flat;
        a.FlatAppearance.BorderSize = 0;   // optional
        // etc...
    

如果您想查看网格,请删除 BorderSize 分配。

【讨论】:

【参考方案2】:

我在TableLayoutPanel中使用不同的控件时遇到了同样的问题

你可以这样做

    转到设计视图 点击属性 转到列,当您单击列旁边的文本框时,文本框的最右侧会出现一个按钮 (...),单击它 会出现一个弹出窗口,选择 AutoSize(而不是 Absolute 或 Percentage)。 在 Show: 的同一窗口中选择 Rows 并再次选择 Autosize。 点击确定就完成了。

【讨论】:

这并不能解决 OP 描述的问题。

以上是关于C语言中怎样让tablelayoutpanel中控件居中显示?的主要内容,如果未能解决你的问题,请参考以下文章

C语言中怎样让tablelayoutpanel中控件居中显示?

C#怎样让tablelayoutpanel中控件居中显示

c#操作tableLayoutPanel

万物互联时代-浅析C语言物联网中控系统优势

TableLayoutPanel隐藏指定的行和列 求指导

C# tablelayoutpanel 无法删除填充/边距