在我的小组中,我有" TSpeedButton
。没有Tab Order属性来订购这个3速度按钮。
如何组织面板上的速度按钮?
答案 0 :(得分:7)
[
{
employee: [list of IDs], // List of employees which are in this project
entry: // Every employee can make entries
[
employee: ID //saving ID of employee
]
},
]
派生自mongoose.model('team').find({
employee: "userid...", // Getting projects of an employee, but there's a missing part which I describe below.
}, function(err, teams) {
res.send(teams);
})
,因此不接受输入焦点。这就是没有TSpeedButton
属性的原因。
如果您希望按钮能够接收输入焦点,则需要使用不同的按钮类。例如,TGraphicControl
或TabOrder
。