How to open Rad...">

How to open the Rad menu after clicking on it?

the code:

<telerik:RadMenuItem x:Name="radMenuHome">
</telerik:RadMenuItem>

How to open Rad menu after pressing wpf button ? It should behave as shown in the following url . Thank.

+4
source share
2 answers

Try installing StaysOpenOnClickin True, by default this is False:

<telerik:RadMenuItem x:Name="radMenuHome"
                     Header="Menu"
                     StaysOpenOnClick="True" ...>
+1
source

Try the following:

  • You should better use the RadTabStrip control.
  • RadMenu /, . OnClientItemClosing event, .
  • , get_openedItem() get_level();
  • , , .close(), .

, css:

CSS Skin File Selectors

+1

Source: https://habr.com/ru/post/1533109/


All Articles