-
What is the difference between MenuItem and MenuDropDown, and what are the use cases for each? Is the hierarchy like... Menu ...or... Menu When running ModernDecompile (on Linux Mint 21 Cinnamon) the Language menu flashes a small window where the submenu would be, but does not display. Contrast that with the Control Gallery sample app, which displays submenus OK for me. I cannot tell why there is a difference, but my project (https://gitlab.com/sjsepan/ModernFormsApp1) does the flash and no display |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Found a solution to the sub-menu flashing a window but not displaying: in .csproj, point to clone of source instead of using a PackageReference (even though dotnet add package Modern.Forms worked to add the reference):
Note: this code is running against .Net 6.0 |
Beta Was this translation helpful? Give feedback.
-
I think the intent is to always use The |
Beta Was this translation helpful? Give feedback.
I think the intent is to always use
MenuItem
. I think originally it wasMenuDropDown
, but I was trying to simplify things by just making it alwaysMenuItem
.The
0.2.0
package is over 2 years old, so it is definitely missing a lot of features and fixes. I am thinking I'll try to put out0.3.0
this month.ModernDecompile
runs on the0.2.0
package, so it makes sense that it would display the flashing as well.