mirror of
https://github.com/qmlnet/qmlnet.git
synced 2026-05-15 14:15:54 -06:00
[GH-ISSUE #220] signal link progressbar #138
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#138
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 @lilongueti on GitHub (Aug 24, 2020).
Original GitHub issue: https://github.com/qmlnet/qmlnet/issues/220
trying to do a NotifySignal from a float to ProgressBar.value but it doesn't seem to work, placing the event somewhere else does assign de value properly but just setting ProgressBar.value=model.Percentage does nothing
@devmil commented on GitHub (Aug 25, 2020):
Hi,
did you get a QML error that Percentage is no property?
QML.Net converts the property names to camelCase because this is the QML standard.
So maybe just using
model.percentagesolves your problem?@lilongueti commented on GitHub (Aug 25, 2020):
i'm not 100% sure what was it, i did use proper casing, however it is working now, thanks