The STN_DBLCLK notification message is sent when the user double-clicks a static control that has the SS_NOTIFY style. The parent window of the control receives this notification message through the WM_COMMAND message.
找到了,说是STATIC控件用了NOTIFY属性后就可以发送消息了,
.elseif
ax==
IDC_STATIC_1;这个是我的静态文本框
shr
eax,16
.if
ax==STN_DBLCLK;这个我截取的通知吗鼠标左键双击
invoke
SetDlgItemInt,hWnd,IDC_STATIC_1,0,FALSE;
.endif
.endif
这个问题结果了,第一次查MSDN资料找到了真高兴啊
第二次问题老大快来啊我继续找找