How can i use WM_* messages in C# code

  • Thread starter Thread starter Pawel
  • Start date Start date
P

Pawel

I have this class below in my project,

public class cmbKeyExt: TestGlobalsCS.cmbKey
{
public cmbKeyExt():base() {}

public bool fClearWithSync()
{
if (this.fClear()==true)
{
this.v_iItems=0;
this.sTmpCode="";
this.Items.Clear();
return true;
}
return false;
}

I will add to this calss WM_LBUTTONDONW message and processing this message

Regards,

Pawel
 

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

Back
Top