Is there a way to make Label(or maybe enother component) selectable.
I'm displaying some text using Label, but it can't selected/copied ... any suggestions ?
Yuri StrotFri 23 Apr 2010
You can use not editable Text for that: Text { text = "Caption"; border = false; editable = false }
There is the common practice in SWT.
tcolarFri 23 Apr 2010
True, although I do want my field to be a little more fancy that Text allows, so I'm now creating my own "Rich" text fields and labels based on RichText.
tcolar Thu 22 Apr 2010
Is there a way to make Label(or maybe enother component) selectable.
I'm displaying some text using Label, but it can't selected/copied ... any suggestions ?
Yuri Strot Fri 23 Apr 2010
You can use not editable Text for that:
Text { text = "Caption"; border = false; editable = false }
There is the common practice in SWT.
tcolar Fri 23 Apr 2010
True, although I do want my field to be a little more fancy that Text allows, so I'm now creating my own "Rich" text fields and labels based on RichText.