Is this layout possible #572
-
I recently started using your project. I was wondering if it is possible to create a layout like this: With a Column and two Panels, I can divide the console into two equal boxes. Thanks for your great project. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
@ctyar Thank you for your kind words. I guess you could accomplish something like this by using a combination of From your description, it sounds like you're looking for a TUI framework, and I would recommend that you look into something like |
Beta Was this translation helpful? Give feedback.
@ctyar Thank you for your kind words.
I guess you could accomplish something like this by using a combination of
Grid
,Rows
andColumns
, but I would recommend against it.From your description, it sounds like you're looking for a TUI framework, and
Spectre.Console
is not a TUI framework, but a library to draw (static) things to the console. Height is not taken into account for example.Spectre.Console
is perfect for scenarios where you want to draw things like a non-interactive table to display some information to the user as part of a CLI application.I would recommend that you look into something like
Terminal.Gui
(or GUI.cs as it's also called) for what I think you're trying to accompl…