We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug Opens in wrong place
To Reproduce
Here is some code to repro
Application.Init (); var t = new Toplevel (); var w = new Window (); var menuBar = new Terminal.Gui.MenuBar (); w.Width = Dim.Percent (90); w.Height = Dim.Percent (80); w.X = Pos.Center (); w.Y = Pos.Center (); menuBar.Width = Dim.Fill (0); menuBar.Height = 1; menuBar.X = 0; menuBar.Y = 0; menuBar.Visible = true; menuBar.Arrangement = Terminal.Gui.ViewArrangement.Fixed; menuBar.CanFocus = false; menuBar.ShadowStyle = Terminal.Gui.ShadowStyle.None; menuBar.Data = "menuBar"; menuBar.TextAlignment = Terminal.Gui.Alignment.Start; var fileF9Menu = new Terminal.Gui.MenuBarItem (); fileF9Menu.Title = "_File (F9)"; var editMeMenuItem = new Terminal.Gui.MenuItem (); editMeMenuItem.Title = "Edit Me"; editMeMenuItem.Data = "editMeMenuItem"; fileF9Menu.Children = new Terminal.Gui.MenuItem [] { editMeMenuItem}; menuBar.Menus = new Terminal.Gui.MenuBarItem [] { fileF9Menu}; w.Add (menuBar); t.Add (w); Application.Run (t); Application.Shutdown ();
Expected behavior A clear and concise description of what you expected to happen.
Screenshots
The text was updated successfully, but these errors were encountered:
I wouldn't waste any time on this.
This will be fixed, properly, in
Menu
Bar
Menu was never intended to be used like this.
Sorry, something went wrong.
No branches or pull requests
Describe the bug
Opens in wrong place
To Reproduce
Here is some code to repro
Expected behavior
A clear and concise description of what you expected to happen.
Screenshots

The text was updated successfully, but these errors were encountered: