If we want to use context menu in WPF Listview. Then we have to done 2 steps: Bind your Listview for Contex Menu: <ListView Height="136" Background="#FFDBF3F3" BorderBrush="#FF40C01D" HorizontalAlignment="Left" Margin="6,6,0,0" Name="zonelistView" VerticalAlignment="Top" Width="722" > <ListView.ContextMenu> <ContextMenu Name="ZoneIformationList" StaysOpen="true" Background="WhiteSmoke"> <ContextMenu.BitmapEffect> <BitmapEffectGroup/> </ContextMenu.BitmapEffect> <MenuItem Header="Edit" Name="EditZoneInfoContextMenu" Click="EditZoneInfoContextMenu_Click" /> <MenuItem Header="Remove" Name="RemoveZoneInfoContextMenu" Click="RemoveZoneInfoContextMenu_Click...
Work smarter, not harder.