很帅很低调 2017-08-30 11:04 采纳率: 50%
浏览 774

在一个页面生成控件,我输入7个控件,让它一行五个,剩下的两个为一行怎么做?

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace WFInfo.Info.Class
{
public class InfoClass
{

    public string InfoName { get; set; }  //页面名字
    public string ConType { get; set; }//控件类型
    public string ConValue { get; set; }//控件的默认值
    public int ConIndex { get; set; }//控件的索引
    public string ConDesc { get; set; }//控件描述
    public string CFName { get; set; }//控件名称
}

}

//在页面中添加控件
private void Contrl_Load(object sender, EventArgs e)
{
this.Name = ic.InfoName;
this.Text = ic.InfoName;
for (int i = 0; i < ic.ConIndex; i++)
{
Label lb = new Label();
lb.Visible = true;
lb.Text = ic.ConValue;
lb.Width = 50;
lb.Location = new Point(20 * i, 24);
panel1.Controls.Add(lb);

            TextBox tb = new TextBox();
            tb.Visible = true;
            tb.Text = ic.ConValue;
            tb.Name = ic.CFName;
            tb.Width = 100;
            tb.Location = new Point(20 * i + tb.Width * i, 24);
            panel1.Controls.Add(tb);
        }
    }

图片说明

小弟只能把它弄成一行五行,剩下的两个为一行,求哪位大神帮帮忙,感谢!!!

  • 写回答

2条回答 默认 最新

  • 老知了-米芾 2017-08-30 14:58
    关注

    再套一层 循环,最大索引值 4.

    评论

报告相同问题?

悬赏问题

  • ¥30 STM32 INMP441无法读取数据
  • ¥100 求汇川机器人IRCB300控制器和示教器同版本升级固件文件升级包
  • ¥15 用visualstudio2022创建vue项目后无法启动
  • ¥15 x趋于0时tanx-sinx极限可以拆开算吗
  • ¥500 把面具戴到人脸上,请大家贡献智慧
  • ¥15 任意一个散点图自己下载其js脚本文件并做成独立的案例页面,不要作在线的,要离线状态。
  • ¥15 各位 帮我看看如何写代码,打出来的图形要和如下图呈现的一样,急
  • ¥30 c#打开word开启修订并实时显示批注
  • ¥15 如何解决ldsc的这条报错/index error
  • ¥15 VS2022+WDK驱动开发环境