Hi Roman…
I have been trying multiple variations on your recommended coding suggestion with no success. I believe I have found the reasons why, which has to do with the way your internal object structures for the menu reflect their information.
The top-most structure that is used as the container for your menu is the Desktop structure. As my code shows below, the attributes and properties of this structure are fairly generic…
>>>
?coMyraUIDesktop
{Myra.Graphics2D.UI.Desktop}
Bounds: 0 0 0 0
ContextMenu: null
FocusedWidget: null
KeyboardState: {Microsoft.Xna.Framework.Input.KeyboardState}
ModalWidget: null
MousePosition: 0 0
MouseState: {Microsoft.Xna.Framework.Input.MouseState}
MouseWheel: 0
Widgets: Count = 1
_widgets: Count = 1
<<<
The next structure, which actually defines the container for the menu is the Grid structure as shown below…
>>> (At generation of menu components)
?coMyraUIDesktop.Widgets[0]
{Myra.Graphics2D.UI.Grid}
AbsoluteBounds: 0 0 0 0
AbsoluteLocation: 0 0
AcceptsTab: false
Background: null
Border: null
Bounds: 0 0 0 0
CanFocus: false
ChildCount: 1
Children: Count = 1
ClipToBounds: false
ColumnSpacing: 1
ColumnsProportions: Count = 1
Desktop: {Myra.Graphics2D.UI.Desktop}
DisabledBackground: null
DisabledBorder: null
DisabledOverBackground: null
DrawLines: false
DrawLinesColor: 255 255 255 255
Enabled: true
GridPositionX: 0
GridPositionY: 0
GridSpanX: 1
GridSpanY: 1
HeightHint: null
HorizontalAlignment: Stretch
Id: null
IsFocused: false
IsMouseOver: false
LayoutBounds: 0 0 0 0
Location: 0 0
MouseButtonsDown: null
OverBackground: null
OverBorder: null
PaddingBottom: 0
PaddingHeight: 0
PaddingLeft: 0
PaddingRight: 0
PaddingTop: 0
PaddingWidth: 0
Parent: null
RenderBounds: 0 0 0 0
RowSpacing: 1
RowsProportions: Count = 1
Size: 0 0
Tag: null
TotalColumnsPart: null
TotalRowsPart: null
VerticalAlignment: Stretch
Visible: true
Widgets: Count = 1
WidthHint: null
XHint: 0
YHint: 0
_widgets: Count = 1
<<<
>>> (at runtime when menu is displayed)
?coMyraUIDesktop.Widgets[0]
{Myra.Graphics2D.UI.Grid}
AbsoluteBounds: 0 0 1200 1000
AbsoluteLocation: 0 0
AcceptsTab: false
Background: null
Border: null
Bounds: 0 0 1200 1000
CanFocus: false
ChildCount: 1
Children: Count = 1
ClipToBounds: false
ColumnSpacing: 1
ColumnsProportions: Count = 1
Desktop: {Myra.Graphics2D.UI.Desktop}
DisabledBackground: null
DisabledBorder: null
DisabledOverBackground: null
DrawLines: false
DrawLinesColor: 255 255 255 255
Enabled: true
GridPositionX: 0
GridPositionY: 0
GridSpanX: 1
GridSpanY: 1
HeightHint: null
HorizontalAlignment: Stretch
Id: null
IsFocused: false
IsMouseOver: true
LayoutBounds: 0 0 1200 1000
Location: 0 0
MouseButtonsDown: null
OverBackground: null
OverBorder: null
PaddingBottom: 0
PaddingHeight: 0
PaddingLeft: 0
PaddingRight: 0
PaddingTop: 0
PaddingWidth: 0
Parent: null
RenderBounds: 0 0 1200 1000
RowSpacing: 1
RowsProportions: Count = 1
Size: 1200 1000
Tag: null
TotalColumnsPart: null
TotalRowsPart: null
VerticalAlignment: Stretch
Visible: true
Widgets: Count = 1
WidthHint: null
XHint: 0
YHint: 0
_widgets: Count = 1
<<<
If you notice the RenderBounds between the when the grid structure is created and when it is finally displayed, you will note that the dimensions change from “0,0,0,0” to that of “0,0,1200,1000”. This appears to mean that the display grid will cover a much larger area of the screen than the actual displayed components take. This also appears to mean that the capturing of mouse-over events can be trapped at the much larger grid-level than should be. I have been able to test this by selecting a point on the displayed screen outside the bounds of the actually displayed menu and yet the function that validates for a mouse-over test for the menu returns “true” when it should be false.
In addition, I have not been able to easily drill down further into the menu’s internal structure to be able to test the actual, individual menu component structures for similar properties. And yet, even if I can, these similar properties appear to be unaffected by any mouse-over events.
For example the structure for the actual “Horizontal Menu” has the following attributes and properties…
>>>
?coMyraUIDesktop.Widgets[0].FindWidgetById(“MyraMasterMenu”)
{Myra.Graphics2D.UI.HorizontalMenu}
AbsoluteBounds: 0 0 0 0
AbsoluteLocation: 0 0
AcceptsTab: false
Background: {button {X:309 Y:162 Width:12 Height:20}}
Border: null
Bounds: 0 0 0 0
CanFocus: false
ChildCount: 1
Children: Count = 1
ClipToBounds: false
ColumnSpacing: 0
ColumnsProportions: Count = 1
Desktop: {Myra.Graphics2D.UI.Desktop}
DisabledBackground: null
DisabledBorder: null
DisabledOverBackground: null
DrawLines: false
DrawLinesColor: 255 255 255 255
Enabled: true
GridPositionX: 0
GridPositionY: 0
GridSpanX: 1
GridSpanY: 1
HeightHint: null
HorizontalAlignment: Stretch
Id: “MyraMasterMenu”
IsFocused: false
IsMouseOver: false
Items: Count = 1
LayoutBounds: 0 0 0 0
Location: 0 0
MenuItemStyle: {Myra.Graphics2D.UI.Styles.MenuItemStyle}
MouseButtonsDown: null
OpenMenuItem: null
Orientation: Horizontal
OverBackground: null
OverBorder: null
PaddingBottom: 0
PaddingHeight: 0
PaddingLeft: 0
PaddingRight: 0
PaddingTop: 0
PaddingWidth: 0
Parent: {Myra.Graphics2D.UI.Grid}
RenderBounds: 0 0 0 0
RowSpacing: 0
RowsProportions: Count = 0
SeparatorStyle: {Myra.Graphics2D.UI.Styles.MenuSeparatorStyle}
Size: 0 0
Tag: null
TotalColumnsPart: null
TotalRowsPart: null
VerticalAlignment: Stretch
Visible: true
Widgets: Count = 1
WidthHint: 1200
XHint: 0
YHint: 0
_widgets: Count = 1
<<<
If you notice, the “IsMouseOver” boolean property is “false” for the “Horizontal Menu” structure even if one were to place the mouse directly over the main menu strip that is stretched across the entire top part of the screen.
…
If I have done my analysis correctly, these disparities are why your suggested code is not yielding the expected results.
This would be fine if such interfaces were to be defined on completely separate screens as is often shown for beginning game tutorials for 2D games. However, I am attempting to develop a rather complex simulation and to date the Myra UI is the top interface library I can find for MonoGame. And I have researched such libraries quite extensively.
I am hoping that with the information have provided you can provide a resolution to this issue as I really do not want to start looking for another interface library since I feel that the Myra UI has great potential for the MonoGame Development Community… 
Steve Naidamast