This question is locked. New answers and comments are not allowed.
Hello,
I captured a screen video to demo the issue.
I add a context menu to RadListPicker, but the ListPicker is expanded when context menu popup. How do I fix this? Thanks.
Xaml:
Code behind:
I captured a screen video to demo the issue.
I add a context menu to RadListPicker, but the ListPicker is expanded when context menu popup. How do I fix this? Thanks.
Xaml:
<telerikInput:RadListPicker x:Name="radListPicker" VerticalAlignment="Top" Header="Country:" InlineModeThreshold="3"> <telerikPrimitives:RadContextMenu.ContextMenu> <telerikPrimitives:RadContextMenu IsFadeEnabled="False" IsZoomEnabled="False"> <telerikPrimitives:RadContextMenuItem Content="add" /> <telerikPrimitives:RadContextMenuItem Content="rename" /> <telerikPrimitives:RadContextMenuItem Content="delete" /> </telerikPrimitives:RadContextMenu> </telerikPrimitives:RadContextMenu.ContextMenu></telerikInput:RadListPicker>Code behind:
List<string> countries = new List<string>(){ "United Kingdom", "Germany", "China", "Japan", "Bulgaria"};this.radListPicker.ItemsSource = countries;