Identifying delphi components

108 Views Asked by At

I want to use the same components used in the images below but I can't figure out if they are third-party components or just modified ones because I tried to modify the theme but could not get the same results. (I am on Embarcadero Delphi 11.3)

1- This Page Control (it has a custom Color)

enter image description here

2- This Button

enter image description here

1

There are 1 best solutions below

0
On
  1. I don't know how to answer that for the PageControl. Try using a tool like Spy++ or WinSight to look at the UI's elements and see what their actual class names are, that might give you a clue to whether it is a standard control or a custom control.

  2. The buttons look like the standard Win32 Command Link control. The VCL's standard TButton component supports that type via its Style property, which you can set to bsCommandLink. The 1st line of text is set by the button's Caption property, the 2nd line of text is set by the CommandLinkHint property, and the image is set by the Images and ImageIndex properties.