摘要:
/// /// Perform a Clone of the object asdfas. /// /// The type of object being cloned. /// The object instance to clone. /// The ... 阅读全文
摘要:
public Form1() { InitializeComponent(); button1.Click += new EventHandler(button_Click); button2.C... 阅读全文
摘要:
foreach(Control c in tabControl1.TabPages)//这个循环的意思是说,遍历tabControl1中所有的TabPages,TabPages是包含在tabControl1里面的,循环进来之后,每次循环,c的类型是TabPage,而不是TabControl。代码修改... 阅读全文