You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in c++, we can code this: QStringList qslstHeaderLabels; qslstHeaderLabels.append("Key"); qslstHeaderLabels.append("Value"); this.SetHeaderLabel(qslstHeaderLabels)
but in C#, QStringList has no "append" function, and the construct not support string[] or List...
The text was updated successfully, but these errors were encountered:
QStringList is a template class and templates are difficult to support. However, there's work in progress and I hope to be able to deliver it in a few weeks.
in c++, we can code this:
QStringList qslstHeaderLabels; qslstHeaderLabels.append("Key"); qslstHeaderLabels.append("Value"); this.SetHeaderLabel(qslstHeaderLabels)
but in C#, QStringList has no "append" function, and the construct not support string[] or List...
The text was updated successfully, but these errors were encountered: