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
 
Back
Top