I am trying to implement what I used to take for granted in Winforms applications. I am a Silverlight noob, so hopefully all this is elementary.
I have a listbox in
There's the MouseRightButtonDown event. If you bind that on the ListBox:
ListBox
you'll get what you need. The code behind is:
private void listBox1_MouseRightButtonDown(object sender, MouseButtonEventArgs e) { }
The MouseButtonEventArgs will give you the position via the GetPosition method.
MouseButtonEventArgs
GetPosition