Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C#
  4. Popping Up Context Menu

Popping Up Context Menu

Scheduled Pinned Locked Moved C#
helpquestion
2 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • R Offline
    R Offline
    ronin1770
    wrote on last edited by
    #1

    hi, I am just wondering how can i make Context Menu pop-up.. only if an item is selected in a ListView Control.... any help will be greatly appreciated... thanx

    S 1 Reply Last reply
    0
    • R ronin1770

      hi, I am just wondering how can i make Context Menu pop-up.. only if an item is selected in a ListView Control.... any help will be greatly appreciated... thanx

      S Offline
      S Offline
      Skynyrd
      wrote on last edited by
      #2

      this should work: private void listView1_MouseUp(object sender, MouseEventArgs e) { if (e.Button==MouseButtons.Right) { if (listView1.GetItemAt(e.X,e.Y)!=null) contextMenu1.Show(listView1,new Point(e.X,e.Y)); } } If ur gonna use this feature many times in your code, it may be better to create ur own control inheriting from ListView and override the OnMouseUp method with this same code. P.D: Dont set ur ListView's ContextMenu property anywhere in ur code or via designer. Keep it Null.

      1 Reply Last reply
      0
      Reply
      • Reply as topic
      Log in to reply
      • Oldest to Newest
      • Newest to Oldest
      • Most Votes


      • Login

      • Don't have an account? Register

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • World
      • Users
      • Groups