L liguang Unregistered / Unconfirmed GUEST, unregistred user! 2000-03-01 #1 当选择一个LISTBOX的ITEM时将会出现一个选择焦点框.如何去掉它!
C cAkk Unregistered / Unconfirmed GUEST, unregistred user! 2000-03-01 #2 重写 procedure TCustomListBox.CNDrawItem(var Message: TWMDrawItem); 把这句去掉应该就可以了: if odFocused in State then DrawFocusRect(hDC, rcItem);
重写 procedure TCustomListBox.CNDrawItem(var Message: TWMDrawItem); 把这句去掉应该就可以了: if odFocused in State then DrawFocusRect(hDC, rcItem);
L liguang Unregistered / Unconfirmed GUEST, unregistred user! 2000-03-14 #5 今天我终于上来了.非常不容易啊! 这里50分花的有些冤,其实在刚提出问题的那天下午我便找到了答案.和CAKK的一模一 样.