equivalent of MouseButtons.Left in VC++.NET

G

Guest

Hello,

Please, what is the equivalent code of
if(e.Button == MouseButtons.Left)
in VC++.NET

Thanks in advance
 
G

Guest

Please, what is the equivalent code of
if(e.Button == MouseButtons.Left)
in VC++.NET

Hi,

I assume you are talking about the MouseClick event.

your code would translate to:
if(e->Button == ::MouseButtons::Left)

--

Kind regards,
Bruno.
(e-mail address removed)
Remove only "_nos_pam"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top