How to remove scrollbars in console windows C++

后端 未结 2 1672
我寻月下人不归
我寻月下人不归 2020-12-30 12:10

I have been checking out some Rogue like games (Larn, Rogue, etc) that are written in C and C++, and I have noticed that they do not have the scrollbars to the right of the

2条回答
  •  轮回少年
    2020-12-30 12:40

    You need to make the console screen buffer the same size as the console window. Get the window size with GetConsoleScreenBufferInfo, srWindow member. Set the buffer size with SetConsoleScreenBufferSize().

提交回复
热议问题