Creating a table using Win32 API

前端 未结 3 2064
抹茶落季
抹茶落季 2021-02-01 09:57

I\'ve been searching the net for different things about the win32 API, but it seems all information on it is rather sparse.

I am looking to create a simple window that s

3条回答
  •  抹茶落季
    2021-02-01 10:10

    Windows provides a fairly basic collection of built-in controls, listed here.

    If you want something more sophisticated your options are:

    • Code it yourself. You have to paint it yourself, handle all the user-interaction, the scrolling, etc. This is a big job.
    • Find an existing implementation.
    • Abandon VC++ and use WinForms or WPF.

    If you're stuck with VC++, The Grid Control and The Ultimate Grid are MFC-based.

    If you're not using MFC there's BABYGRID or The Win32 SDK Data Grid.

    If none of them suit, you'll have more luck searching for "grid" than "table".

提交回复
热议问题