使用telerik和radmenu,您知道如何通过文本检查项目是否存在
我的菜单包含文字“menu1”
如果我使用menu.FindItemByText("menu1").Enabled = False
,则会停用按钮
BUT
如果我使用menu.FindItemByText("menuTEST").Enabled = False
,那么我会收到异常,因为此按钮不存在。
如何停止错误?
我在下面尝试了这个,但它说它无法返回booloen
If menu.FindItemByText("menuTEST") then
'do this
End If
答案 0 :(得分:1)
试试这个:
If Not(menu.FindItemByText("menuTEST") Is Nothing) then
'do this
End If