Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要使用 MFC 实现一个列表控件,其中行数是固定的。它应该使用 FIFO,行数是固定的。有内置选项吗?或者可编程的方法。
If you're starting from scratch, then you could simply bind the controller's logic to something standard from STL, e.g std::list.