Hello,
I have a context menu that shows up on my textblock MouseEnter. all good.
What I want is that the menu hides when I leave the block. I thought the menu will just close itself after the hide delay runs out.
Do I miss something? Thank you for your help.
Also, one question. If I have bought the product can I ask such questions to the support by opening a ticket or do I still come here for answers?
Here is my xaml:
I have a context menu that shows up on my textblock MouseEnter. all good.
What I want is that the menu hides when I leave the block. I thought the menu will just close itself after the hide delay runs out.
Do I miss something? Thank you for your help.
Also, one question. If I have bought the product can I ask such questions to the support by opening a ticket or do I still come here for answers?
Here is my xaml:
<
TextBlock
x:Name
=
"StoreLink"
Text
=
"Store"
>
<
telerik:RadContextMenu.ContextMenu
>
<
telerik:RadContextMenu
HorizontalAlignment
=
"Left"
Name
=
"StoreContextMenu"
VerticalAlignment
=
"Top"
EventName
=
"MouseEnter"
Placement
=
"Bottom"
HideDelay
=
"0:0:1"
>
<
telerik:RadMenuItem
Header
=
"Par chaine"
Click
=
"RadMenuItem_Click"
/>
<
telerik:RadMenuItem
Header
=
"Par marque"
Click
=
"RadMenuItem_Click_1"
/>
<
telerik:RadMenuItem
Header
=
"Liste spécifique"
Click
=
"RadMenuItem_Click_2"
/>
</
telerik:RadContextMenu
>
</
telerik:RadContextMenu.ContextMenu
>
</
TextBlock
>