I have a TComboBox and I want to change its dropdown list and replace it with my own control which is (TYazTreeList)
What is the easiest way?
I want to inherit a new control from TComboBox (lets call it TYazComboBox)
Thank you.
I have a TComboBox and I want to change its dropdown list and replace it with my own control which is (TYazTreeList)
What is the easiest way?
I want to inherit a new control from TComboBox (lets call it TYazComboBox)
Thank you.
Copyright © 2021 Jogjafile Inc.
TComboBox
subclasses the Microsoft Windows'COMOBOX
window class from the Windows Common Control library.COMBOBOX
provides the dropdown, so you should either replace that, or completely write yourTYazComboBox
class (which some 3rd party Delphi control vendors did). Both options are hard.