我有一个标签控件,我从xml文件加载图像。 对于我的xml文件中的每个图像,我创建了一个表格布局面板,我用一些控件填充它,包括一个复选框。 有没有办法让用户用鼠标标记一个区域并检查该区域内的所有复选框?
以下是在标签页中生成表格的代码:
for (int i = 0; i < xnList.Count; i++)
{
PictureBox img = new PictureBox();
//code to add image
...
CheckBox chkSelectProduct = new CheckBox();
chkSelectProduct.Text = "...";
...
TableLayoutPanel tbl = new TableLayoutPanel();
//adding the picturebox to the table
//adding the checkbox to the table
fileTab.controls.Add(TBL); }
最后,我有一个标签控制标签页,其中包含很多表,每个表都包含一个图片框和一个复选框。