Creating a tab control with a dynamic number of tabs in Visual Studio C#

后端 未结 4 602
名媛妹妹
名媛妹妹 2021-01-04 21:17

How to create a tab control with a dynamic number of tabs in Visual Studio C#?

I\'ve got a database with a table customers. I need to create a form that

4条回答
  •  感动是毒
    2021-01-04 21:22

    It sounds like the best route for you would be to create your own custom tab control class. It could inherit from tab control for the bulk of its functionality and properties for the datagrid and whatever else custom you need. Then when you get your customers, you can create a tab for each letter you need and setup the corresponding properties.

提交回复
热议问题