Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1770
hiding context menu based on record index
posted

Hello.

How can I prevent the context menu from appearing based on the index the user click on in xamdatagrid? I imagine that I would use a data trigger but how do I get the right-clicked on record's index in xaml?

<ContextMenu.Style>
<Style TargetType="{x:Type ContextMenu}">
<Style.Triggers>
<DataTrigger Binding="{Binding Path=PlacementTarget.Record}" Value="-1">
<Setter Property="Visibility" Value="Hidden"/>
</DataTrigger>
</Style.Triggers>
</Style>
</ContextMenu.Style>

Parents
  • 34810
    Offline posted

    Hello KrisVice,

    Thank you for your post.

    To get a context menu on the records of a XamDataGrid to not show up based on the index of the record, I would recommend writing a Style for DataRecordPresenter. In that style, you can set the context menu property to your context menu, and write a Style for it with the trigger that you have provided. One difference though, is that you will want to change the binding on the DataTrigger to be like the following, otherwise you are binding to the data context of the context menu:

    {Binding RelativeSource={RelativeSource Self}, Path=PlacementTarget.Record.Index}.

    Please let me know if you have any other questions or concerns on this matter.

    Sincerely,
    Andrew
    Associate Developer
    Infragistics Inc.
    www.infragistics.com/support

Reply Children