如何启用或禁用一列文本框?

时间:2009-01-18 04:32:24

标签: c#

现在我想以最佳方式启用或禁用该列文本框,可能不使用数组或循环。我该怎么做?

// create a column of textboxes dynamically
   private void CreateControl(int ControlId)
{

            CheckBox control1 = new CheckBox();

            control1.Click += new EventHandler(chk_CheckedChanged);

            Point point = GetPoint(ControlId);
        control1.Location = point;
        this.Controls.Add(control1);


}

// a check box to enable or disable that column of textboxes
private void checkBox1_CheckedChanged(object sender, EventArgs e)
{
    Column column = new Column();
  CheckBox  chk = (CheckBox) sender;
  if (chk.Checked)
  {


      column.EnterName.Enabled = true;
// I want to enable or disable the entire column of textboxes

  }
}


Public Class Column 
{
  public TextBox EnterName {get;set;}
}

1 个答案:

答案 0 :(得分:1)

  • 添加一个GroupBox或一个Panel(如果你没有创建那里没有任何东西的错觉......没有边框)来容纳文本框列
  • 根据需要切换Groupbox的Enabled属性。

我认为这有用。