Can anybody please let me know, how to add a right click event handler for a static text on a Dialog box.
So I have a modal dialog box, on which I have a static text control. When I am trying to add event handler for it,
I have only options:
STN_CLICKED
STN_DBCLK
STN_ENABLE
STN_DISABLE
NM_THEMECHANGED.
there is no message for right click. And I need to handle right click event. Can you please help me to know, is there any way to add right click event handler?
What you can do is this ...
Make sure your static control has a unique ID, eg:
IDC_STATIC1
. It can't be IDC_STATIC.Associate the control with a
CStatic
variable using theClassWizard
.Override the
OnContextMenu
for your dialog using the editor.Now you can do something like: