111,126
社区成员
发帖
与我相关
我的任务
分享
还需要多多努力才行啊…… if (this.parent != null)
{
this.parent.Controls.Remove(this);
}
public bool MoveNext()
{
if ((this.current < (this.controls.Count - 1)) && (this.current < (this.originalCount - 1)))
{
this.current++;
return true;
}
return false;
}