简体   繁体   中英

How to split c++ console screen into parts?

I'm making a c++ console application, I want to split the console screen into parts and every part will print an individual output, to be more clear the console screen should be close to the design of Far Manger console app screen, but I have no idea how to start and what libraries should I use to do so. Sorry if it's a naive question but I seriously have no idea and couldn't find what I want when I made a search.

If you want control of console text, such as positioning, or representation in a windowed fashion, have a look at ncurses .

Your target system may support escape sequences (see the wiki ANSI Escape Codes ), or have particular API (as mentioned in the above comments) to implement console manipulation.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM