你好,想问关于 infragistics UltraWebMenu 的问题。
你好,想问关于 infragistics UltraWebMenu 的问题。在代码编辑页面中。this.UltraWebMenu2.Items.Index(14).Hidden=false; 这样写没问题。
这样写 this.UltraWebMenu2.Items.Index(14).Index(0).Hidden=false; 就抱错。
我的目的是把Index(14)下的子菜单项的Index(0)隐藏。
不知道我说的是否清楚,盼恢复。谢谢。 --------------------编程问答-------------------- 报什么错?还有就是应该是[]不是()
()是方法和属性Index[]是索引吧? --------------------编程问答-------------------- this.UltraWebMenu2.Items.Index(14).Index(0).
应该这样控制子项
this.UltraWebMenu2.Items[0].Items[0]
谢谢大家,结贴了。
补充:.NET技术 , C#