mirror of
https://github.com/qmlnet/qmlnet.git
synced 2026-05-15 14:15:54 -06:00
[GH-ISSUE #167] Documentation #107
Labels
No labels
bug
enhancement
help wanted
help wanted
pull-request
question
todo
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: github-starred/qmlnet#107
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @SwiTool on GitHub (Sep 19, 2019).
Original GitHub issue: https://github.com/qmlnet/qmlnet/issues/167
Hello,
First of all, thanks @pauldotknopf (and all contributors) to make the dream – to have a C# crossplatform UI library – come true.
This fits perfectly my needs.
But there's a lack of documentation, and I can understand because the project is pretty new.
I could contribute on writing it, oh god if only I could.
I have not a lot experimentation with C# nor with Qt (although for the last one, I have a bit, but still, it's from school memories), and I truly need to know the uses cases and more in depth, the usage, best practices and bad practices, etc.
The "quick start" is good to setup the library. The first tutorial https://github.com/Jodeldiplom/qmlnet-tutorials (thanks @Jodeldiplom) is basically the same as the quick start, and the second is quite good but not enough because there are no signals.
The PhotoFrame example is well detailed, but as a beginner in this language, I can't get to understand what's underneath the surface and how it works. And I think to make good things you must be able to understand every part of the program. There can't be "magic working stuff", and for that, I would really like to dig.
It has been 2 days than I'm looking at the source codes, opening them, trying to make changes to understand. But wow, I feel terribly bad because I can't get anything to work when I want to add a feature.
For example, i've been trying to add signals to the Contacts tutorial 02 from @Jodeldiplom, to make the Contact list dynamic. No success (I don't know if it's because I have signals on other types than "string" or "int" that are showed in the examples...).
I don't have excuses, I should be able to make it work since it's not that hard. I understand the Quick Overview, but I would like to know more about the library.
Thank you.
@SwiTool commented on GitHub (Sep 20, 2019):
Okay so by navigating over the issues, I found @MaxMommersteeg repositories, the Chat and Todo projects are concrete usage examples.
It would make sense to put the lights on them for people to see concrete usage of the library :
From there I have some questions :
I'll put more questions if I have, but I see a bit clearer with the sample projects.
Please no offense if I ask stupid questions. I'm sure this could help others too.
Thank you !
@pauldotknopf commented on GitHub (Sep 20, 2019):
ITypeCreatorallows you to resolve instances of your QML types from something like a container (dependency injection).@pauldotknopf commented on GitHub (Sep 20, 2019):
By the way, thanks for the kinds words. I'd love some help in documenting this thing. I use it in production myself, currently, but I can see why others would be hesitant to use it.
@SwiTool commented on GitHub (Sep 20, 2019):
For the point 3, here is
_todoItemService. Why notTodoItemServicefor example ?No problem, I really mean it.
Actually the code is well commented, but it truly needs tuts or step by step guides. (something to know about the features, because if not written down, the users do not know at what point this lib is incredible)
I can feel your pain 😉
Thanks for the answers. The 1 seems obvious now you said it 😄
@vadi2 commented on GitHub (Sep 20, 2019):
_is the C# convention for private members.@MaxMommersteeg commented on GitHub (Sep 20, 2019):
My sample apps could be nice starting points for a beginner (since they are created by a Qml beginner (me). But still, they probably contain some
not-so-good practices.I should invest some time in them (and learn some more Qml) to make them more valuable for beginners.
@ghost commented on GitHub (Oct 11, 2019):
Does anybody know if there is a subreddit or discord dedicated to qml.net? I feel like it would be very beneficial for us early adopters to have a place where we could share our knowledge and help each other out. If there aren't any, maybe we could get together and create one?
@pauldotknopf commented on GitHub (Oct 11, 2019):
The Gitter channel is all we got right now.
https://gitter.im/qmlnet/Lobby
@Etchelon commented on GitHub (Nov 11, 2019):
On that matter, I'd like to have some replies in that channel by the way, everyone disappeared after I joined 😢
Anyway thanks a lot for making this! I love QML but C++ is... hard to use after getting used to C# and Javascript for web development. With your library I can now write Windows apps easily.