3

I'm writing a C# TCP Server as a console application, my requirement is to display few information in separate panels in same console, like this image bellow

screenshot downloaded from internet

Is this possible to achieve in C#? if it is possible sample code will be very helpful.

Wai Ha Lee
  • 8,598
  • 83
  • 57
  • 92
dimisam
  • 33
  • 4
  • What exactly do you want to achieve ? Display a complex gui in console project ? This is a common question, see for example http://stackoverflow.com/questions/1595514/windowing-system-for-net-console – AFract Nov 10 '15 at 10:14
  • [Google is your friend.](https://www.google.de/search?q=c%23+console+draw+frame&ie=utf-8&oe=utf-8&gws_rd=cr&ei=pMNBVrD1IoOjsAHShYCgCw) The first hits should take you all the way.. – TaW Nov 10 '15 at 10:17

1 Answers1

1

You can achieve an ncurses-like interface in C# by using MonoCurses.

emmekappa
  • 792
  • 1
  • 6
  • 9