Page 1 of 1

Right click with flash menu = false

Posted: Tue Dec 04, 2007 1:15 pm
by danielgianni
I couldn't able manage to get a capture the event click with the right-click with the context menu is disabled.

How can I fix this?

Posted: Tue Dec 04, 2007 3:26 pm
by Softanics
Thank you for your question.

I've just added a handler for MouseUp event:

Code: Select all

      private void f_in_box__control1(object sender, System.Windows.Forms.MouseEventArgs e)
      {
         if (e.Button == System.Windows.Forms.MouseButtons.Right)
         {
            MessageBox.Show("Hi!");
         }
      }



and it works well.