Can you point me out good documentation/practices for developing custom controls? I checked the official doc, but it's not enough for me.
I would like to display a Label
or a TextField
and wrap it with a Path
object to create a border.
Please find here a sample of what I want to create :
From top to bottom, left to right :
- Label, Textfield,
- Label, Passwordfield (textfield with blur effect)
- Label selectable (and clickable), and CheckBox with Label at the right.
(when textfield, passwordfield or checkbox are selected, the color is CYAN too)
I achieved to create that controls in a custom class extending Region, displaying a Text and Paths/Lines. And subclasses specialize by adding textfield/checkbox items in it.