0

我正在处理需要发送动态创建的文本框的值的项目。当我在我的计算机中更改它时,我需要在另一台计算机中更改值。

这是我的代码:

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

static int itimes = 0;
static int i = 0;
public void textboxadd()
{            
    TextBox txt = new TextBox();
    txt.Name = "Name" + i;

    if (i == 0)
    {
        Point p = new Point(6, 43);
        txt.Location = p;
    }
    else
    {
        Point p = new Point(6, 43 + 32 * i); 
        txt.Location = p;
    }

    txt.Size = new System.Drawing.Size(236, 26);

    Properties.Settings.Default.name1 = txt.Text;
    Properties.Settings.Default.Save();


    groupBox1.Controls.Add(txt);

    i++;           
}

private void button1_Click(object sender, EventArgs e)
{            
    textboxadd();
    int gps = groupBox1.Size.Height;
    if (itimes == 0)
    {
        itimes++;
    }
    else
    {
        groupBox1.Size = new System.Drawing.Size(248, gps + 32);
    }
}
}

如果您不明白我的问题,请提出,我会回答。

4

0 回答 0