views:

200

answers:

1

I am writing a grid control which I based on TCustomControl so I can handle all the structure, painting and navigation myself. The bit that I can't seem to figure out is this:

In my constructor, I set ControlStyle to this:

ControlStyle := ControlStyle + [csCaptureMouse, csClickEvents,
    csDoubleClicks, csNeedsBorderPaint, csPannable];

The idea being that if the control handles mouse events, I can do things like set selection etc. I noticed though that the control never receives the focus. I happen to have a TComboBox on the form and it is clearly focused when the form is created. No matter how many times I click within my grid, the focus stays on the combobox.

This of course has implications for my handling of keyboard events as well.

So the question is, how is it determined that the focus should shift to a control when you click on it?

+2  A: 

The CustomControl should call SetFocus on itself when it is clicked upon.

procedure TMyCustomControl.MouseDown(Button: TMouseButton; Shift: TShiftState; X, Y: Integer);
begin
  inherited;

  if not (csDesigning in ComponentState) and CanFocus then
    SetFocus;
Lars Truijens
+1 This is what I do in my custom controls
Nat