摘要: How to loop through all ribbon tabs, ribbon bar and items on WinForms Ribbon controlIf you need to loop through all ribbon tabs, ribbon bars and items on each ribbon bar here is how to do it.C#:foreach (BaseItem item in ribbonControl1.Items){ RibbonTabItem ribbonTab = item as RibbonTabItem; if... 阅读全文
posted @ 2011-09-21 00:29 画方软件 阅读(2756) 评论(0) 推荐(0) 编辑