This question is locked. New answers and comments are not allowed.
Hi Telerik,
I have RadContextMenu which is opened for Click event of Button. Works fine.
But if I change FlowDirection to RightToLeft then RadContextMenu is opened somewhere outside of browser area and it is not visible.
This is a code which does not work.
Could you have a look?
Best regards,
Dalibor
I have RadContextMenu which is opened for Click event of Button. Works fine.
But if I change FlowDirection to RightToLeft then RadContextMenu is opened somewhere outside of browser area and it is not visible.
This is a code which does not work.
<
UserControl
x:Class
=
"COntextMenuRightToLeft.MainPage"
FlowDirection
=
"RightToLeft"
xmlns:telerik
=
"http://schemas.telerik.com/2008/xaml/presentation"
mc:Ignorable
=
"d"
d:DesignWidth
=
"640"
d:DesignHeight
=
"480"
>
<
Grid
>
<
Grid.RowDefinitions
>
<
RowDefinition
Height
=
"Auto"
/>
<
RowDefinition
Height
=
"*"
/>
</
Grid.RowDefinitions
>
<
Grid.ColumnDefinitions
>
<
ColumnDefinition
Width
=
"Auto"
/>
<
ColumnDefinition
Width
=
"*"
/>
</
Grid.ColumnDefinitions
>
<
Button
Content
=
"Add"
Width
=
"32"
Height
=
"32"
Grid.Row
=
"0"
Grid.Column
=
"0"
>
<
telerik:RadContextMenu.ContextMenu
>
<
telerik:RadContextMenu
EventName
=
"Click"
>
<
telerik:RadMenuItem
Header
=
"Add"
/>
<
telerik:RadMenuItem
Header
=
"Edit"
/>
<
telerik:RadMenuItem
Header
=
"Delete"
/>
</
telerik:RadContextMenu
>
</
telerik:RadContextMenu.ContextMenu
>
</
Button
>
</
Grid
>
</
UserControl
>
Best regards,
Dalibor