DelphiVCL4Python icon indicating copy to clipboard operation
DelphiVCL4Python copied to clipboard

TLinkLabel missing

Open shaunroselt opened this issue 2 years ago • 2 comments

Hi.

I tried making a LinkLabel, but seems like it doesn't exist yet. My code:

self.myLabel = LinkLabel(self)
self.myLabel.Parent = self
self.myLabel.Caption = "Hello World!"
self.myLabel.Font.Size = 85
self.myLabel.Width = 650
self.myLabel.Height = 150
self.myLabel.Left = (self.Width - self.myLabel.Width) / 2
self.myLabel.Top = (self.Height - self.myLabel.Height) / 2
self.myLabel.BevelKind = "bkTile"

NameError: name 'LinkLabel' is not defined

shaunroselt avatar Mar 05 '23 08:03 shaunroselt

Let's include TLinkLabel to the roadmap.

lmbelo avatar Mar 06 '23 11:03 lmbelo

The TLinkLabel wrapper is now available. Check it out:

https://embarcadero.github.io/DelphiVCL4Python/changelog/1.0.2-changelog.html

lmbelo avatar Mar 16 '23 00:03 lmbelo