Workflow on the TUI design? #209
GronbergInfo
started this conversation in
General
Replies: 1 comment 1 reply
-
I think the easiest way to do this would be to use You could then launch this second view from your first with namespace YourNamespace {
using System;
using Terminal.Gui;
public partial class MyView {
public MyView() {
InitializeComponent();
editMeMenuItem.Action = ShowSettings;
}
private void ShowSettings()
{
Application.Run<SettingsView>();
}
}
} You can quit the popup and return to the main app with Ctrl+Q Also I think you want to make sure you have your Window be Modal = true; |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi, i just noticed theat, i have this frame that starts visible=false (runtime) but in design time its always visible, is there a better way to design my TUI where these frames can lay above the "main view"?
Beta Was this translation helpful? Give feedback.
All reactions