-
Notifications
You must be signed in to change notification settings - Fork 195
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ShowContextMenu show Shell Context Menu but with no text and no icon #406
Comments
Perhaps pb with IContextMenu3 interface ? private void button1_Click(object sender, EventArgs e)
|
Have you found functional examples using |
I rewrite to use BasicMessageWindow and it works i.e. the behavoir is correct (the context menu is correctly displayed based on selected item(s) and returned cmd id as well); the m_ComInterface3 is always returned (based on my tests) and it seems that INITMENUPOPUP is the only msg to intercept...
|
To simplify, I try this simple code (W11 pro) :
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
On button1 click, the shell context menu is show but with no text or icon...
What's or or missing ?
The text was updated successfully, but these errors were encountered: