QtSharp icon indicating copy to clipboard operation
QtSharp copied to clipboard

can't use QStringList

Open hezhaowei opened this issue 8 years ago • 2 comments

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...

hezhaowei avatar Jun 15 '17 02:06 hezhaowei

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.

ddobrev avatar Jun 15 '17 17:06 ddobrev

+1

iWeaverMan avatar Sep 13 '18 04:09 iWeaverMan