ObjectDoubleClicked and right button

Hello,

it seems the right button is not reognized on ObjectSingleClicked and BackgroundSingleClicked.

I try this :

… ObjectSingleClicked(Object obj, GoObjectEventArgs e) {
MessageBox.Show(e.Buttons.ToString());

I get ‘left’ when I click the left button and I get nothing with the right button, as if the event is not raised.

Is this correct ? How can I do ?

Best regards
Daniel

Look for “ContextClick”

Hi,

thanks a lot.

It’s what I want to do.

Daniel