Paul Knopf
Paul Knopf
Doing this would require bindings for ```QQuickTextDocument```, ```QTextDocument```, ```QTextBlock```, ```QTextCursor```, etc. We do support interacting with QObjects now (with INetQObject), but some types don't derive from QObject (such as QTextCursor)....
If you are using the ```Qml.Net``` package from NuGet, you need to make sure you use the correct commit to build the native libs. Can you verify that? If you...
We support 5.10 and up. Using the pre-compiled runtime, we only support 5.12, but when compiling yourself, 5.13+ should work as well. See here: https://github.com/qmlnet/qt-runtimes
Can you try this project? https://github.com/qmlnet/qmlnet-examples Also, did you add a reference to the native packages? ```xml Exe netcoreapp2.1 $(MSBuildProjectDirectory) ```
I see, I will check it this evening.
So, it seems that ```DllImport``` isn't finding the native binaries on .NET Fullframework. Add a reference to ```Qml.Net.WindowsBinaries```. ```c# [DllImport("QmlNet")] internal static extern long qml_net_getVersion(); static int Main(string[] args) {...
I've posed the question on SO [here](https://stackoverflow.com/questions/55678984/dllimport-native-dependency-from-nuget-package-not-working-on-net472-but-works). I will let you guys know if I hear anything back.
Not currently, but it is a good idea.
Not quite. At a C++ API level, support is there, but it isn't integrated into QML yet.
Is it possible currently, but requires some compilation of the native layer and some "jiggering". I have it planned to polish it up and make it officially supported soon.