标签:
代码:
/// <summary> /// 递归方法清空tab页面 /// </summary> private void ClearTabControlPages() { if (tabControl1.TabPages.Count > 0) { for (int i = 0; i < tabControl1.TabPages.Count; i++) { this.tabControl1.TabPages.RemoveAt(i); } ClearTabControlPages(); } }
(DevExpress控件使用技巧一)清空XtraTabControl所有的TabPage
标签:
原文地址:http://www.cnblogs.com/office200688/p/5490133.html