Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
コードビハインドで非表示にしたいサブメニュー項目のないトップレベルのメニュー項目があります。
Page_Load では、次のものがありますが、メニュー項目を非表示にしていないようです
RadMenu1.FindItemByText("UserPage").Remove();
私の投稿が少し遅れていることは知っていますが、おそらくこれは他の人を助けることができます.
Dim Raditem As RadMenuItem = RadMenu1.FindItemByText("UserPage") If Not Raditem Is Nothing Then Raditem.Visible = False End If