日期:2014-05-17 浏览次数:20875 次
private void Com(Control.ControlCollection c)
{
richTextBox1.Clear();
if (c.Count > 0)
{
foreach (Control c1 in c)
{
if (c1.GetType().ToString().Equals("System.Windows.Forms.CheckBox"))
{
if(((CheckBox)c1).Checked== true)
{
// richTextBox1.AppendText();
//
}
}
if (c1 != null)
{
Com(c1.Controls);
}
else
{
return;
}
}
}
else
{
return;
&nb