You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have tried adding a way to by pressing the internal button, open the submenu. What I did is to replace the button1.InnerArcPressed in the demo app to:
button1.InnerArcPressed += ( sender, e ) => button1.Submenu.ClickOuterRadialMenuButton( button1 );
This works, clicking the Melbourne button opens it's submenu. However if I do this on any submenu, it does not work. Adding:
button14.InnerArcPressed += ( sender, e ) => button1.Submenu.ClickOuterRadialMenuButton( button14 );
and changing button14 type to simple is not working. Basically doing this on any button that it is not part of the main menu, but a submenu, it does not work.
The text was updated successfully, but these errors were encountered:
I have tried adding a way to by pressing the internal button, open the submenu. What I did is to replace the button1.InnerArcPressed in the demo app to:
button1.InnerArcPressed += ( sender, e ) => button1.Submenu.ClickOuterRadialMenuButton( button1 );
This works, clicking the Melbourne button opens it's submenu. However if I do this on any submenu, it does not work. Adding:
button14.InnerArcPressed += ( sender, e ) => button1.Submenu.ClickOuterRadialMenuButton( button14 );
and changing button14 type to simple is not working. Basically doing this on any button that it is not part of the main menu, but a submenu, it does not work.
The text was updated successfully, but these errors were encountered: