QtSharp
QtSharp copied to clipboard
Mono/.NET bindings for Qt
Support Android And IOS And Mac And Linux If possible then tizen
The last commit over a year ago. Please continue to develop QtSharp!
I cloned repository, and i executed command to create bindings like in docs: `"..\QtSharp.CLI.exe" "C:\Qt\5.11.1\mingw53_32\bin\qmake.exe" "C:\Qt\Tools\mingw530_32\bin\mingw32-make.exe"` But throw an exception: ```exception Exceção Sem Tratamento: System.InvalidCastException: Não é possível converter um...
This is probably something to be looked at later on for the back burner once we have more of the basic Qt Widgets tested out, but I figured I'd write...
Consider the following code: ``` var vbox = new QVBoxLayout(); var hbox = new QHBoxLayout(); vbox.AddLayout(hbox); vbox.Dispose(); // System.AccessViolationException ``` Tested with the official QtSharp-0.7.4 release with Qt-5.9.2-MinGW. The equivalent...
How to get an object value from qvariant, the generated class does not have this method? And how to create a variant based on an qobject or other objects?
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...
Hi, QtSharp seems great! I wonder if it's possible to invoke qmlRegisterType from c# or if there is any other way to use c# from qml? Regards, Bruno
I'm trying to add more strings in QtCore.QStringList but constructor only allows one string as parameter. We need this implementation: ~~~csharp QtCore.QStringList( IEnumerable stringList); // and then use it like...