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).
How does one set the column name of a QTreeWidget. I have search many documents and forums without any results.
Help is appreciated.
fixed it.. heres the code if any other newbies are having the same problem.
@ QTreeWidget* TreeWidget = new QTreeWidget(this);
...
QStringList ColumnNames; ColumnNames << "Column 1" << "Column 2";
TreeWidget->SetHeaderLabels(ColumnNames); @