Windowing System for .NET Console

2019-05-14 14:58发布

问题:

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

回答1:

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.