CEdit Remove Right-click Pop-up menu

Source: Internet
Author: User

VC, edit control the default point of the right button will pop up the shortcut menu, such as copy, paste and so on, but sometimes we want to remove, the data collected from the Internet is mainly sub-class edit control, and then handle wm_contextmenu rest, in fact, nothing in this message can be done.

In general, editing controls that can be sub-typed can be used to mask the right-click menu in this way, but how do you block it if you can't subclass it? For example, a control is on a dlalogbar.

If you want to pop-up menu, then just in the wm_contextmenu rest of the processing function, pop-up menu, with TrackPopupMenu ();

void Cmyapptest::ontextmenu (cwnd* pWnd, CPoint Point)
{
Todo:add your message Handler code here

CMenu menu;
Menu. LoadMenu (idr_menu_test);
Menu. GetSubMenu (1)->trackpopupmenu (tpm_leftalign| Tpm_rightbutton,point.x,point.y,this);

}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.