Embarcadero/DelphiVCL4Python

TLinkLabel missing

shaunroselt opened this issue · 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

Let's include TLinkLabel to the roadmap.

The TLinkLabel wrapper is now available. Check it out:

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