Home > database >  Phone contact list with Qt
Phone contact list with Qt

Time:12-24

I just started learning Qt and would like to try creating phone contact list. Through I couldn't find from where to start. I would be glad for any suggestions.

CodePudding user response:

For a phone contact list I suggest looking at QListWidget. It has functions to insert/remove items and you can get signals when items are altered or when a new item is clicked.

  • Related