Kent Boogaart
Kent Boogaart

Reputation: 178810

Windowing System for .NET Console

Does anyone know of any simple .NET windowing systems for the console?

I'm looking for something that manages areas of the console such that they are automatically scrolled independently of other areas. For example, I could create a status strip down the bottom and a main content area above it. It would also be useful if it handled colors for me.

Thanks, Kent

Upvotes: 3

Views: 581

Answers (1)

Bob
Bob

Reputation: 99824

A while back I took a look at MonoCurses and Curses#. I don't think MonoCurses supports independent scrollable areas, but I feel like Curses# should.

I wanted this style interface so I could have one interface for windows and linux. In the end I just went with a normal command line interface.

Upvotes: 6

Related Questions