Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Like the title, which widget should I choose to implement an grid UI like this?
@pengxu
If you look at Qt Creator sourcecode, you can see that this is a custom widget with grid view and custom item delegates
https://github.com/qt-creator/qt-creator/blob/f2351b06e05f5a129df1e6a38557c692687674c6/src/plugins/qtsupport/gettingstartedwelcomepage.cpp#L262
QGridView is deprecated, I guess, but you can use a QTableWidget or QListWidget.
QGridView
QTableWidget
QListWidget