我在表单上动态添加了checkboxex。选中复选框后,我想执行一些操作。以下是使用
的代码 private void GenerateSidePanelControls()
{
try
{
int topPosition = 15;
foreach (SideMenuItem sItem in _sideMenuItemList)
{
CheckBox objLabel = new CheckBox();
objLabel.Name = sItem.TagName;
objLabel.Text = sItem.TagName;
objLabel.Left = 15;
objLabel.Top = topPosition;
objLabel.Font = _normalFont;
sidePanel.Controls.Add(objLabel);
topPosition += 35;
objLabel.CheckedChanged += new System.EventHandler(this.SideLabel_Click);
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
private void SideLabel_Click(object sender, EventArgs e)
{
int topPosition = 20;
try
{
Cursor = Cursors.Default;
CheckBox objLabel = (CheckBox)sender;
objLabel.Name = objLabel.ToString();
objLabel.Font = _boldFont;
foreach (Control ctrl in sidePanel.Controls)
{
if (ctrl is CheckBox)
{
if (((CheckBox)objLabel).Checked == true)
{
TextBox txt = new TextBox();
txt.Text = "Checked";
sidePanel.Controls.Add(objLabel);
topPosition += 25;
}
}
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
在我在运行时检查复选框之前得到结果。在运行时选中复选框后,我需要执行操作。
答案 0 :(得分:0)
您需要添加新创建的TextBox:
TextBox txt = new TextBox();
txt.Text = "Checked";
//sidePanel.Controls.Add(objLabel);
sidePanel.Controls.Add(txt);
topPosition += 25;
我根据您的评论When i check the checkbox at runtime, nothing happens.
要考虑的其他笔记:
foreach ctrl
而不是使用ctrl
。所以循环是没用的。 您可以更改此行
if (((CheckBox)objLabel).Checked == true)
简单地
if (objLabel.Checked)