Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的程序中,SpeenButton 的图像由 imagelist 设置。当我单击速度按钮时,我需要用图像列表中的另一个图像更改图像。我怎样才能做到这一点?
如果您正在谈论 VCL TSpeedbutton,您可以TActionList在表单上放置一个并将其连接到您的TImagelist. 然后在动作列表中创建一个动作,将其设置ImageIndex为所需的图像。现在将 连接TSpeedbutton到该操作。如果OnExecute发生动作,请将动作ImageIndex属性更改为新值。速度按钮现在显示新图像。
TSpeedbutton
TActionList
TImagelist
ImageIndex
OnExecute