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.
在我的面板中,我有 " TSpeedButton。没有 Tab Order 属性来订购这 3 个速度按钮。
TSpeedButton
如何在我的面板上组织速度按钮?
TSpeedButton派生自TGraphicControl,因此不接受输入焦点。这就是没有TabOrder财产的原因。
TGraphicControl
TabOrder
如果您希望您的按钮能够接收输入焦点,那么您需要使用不同的按钮类。例如,TButton或TBitBtn。
TButton
TBitBtn