1

我创建了 mainform(自动创建表单)和 Form1(可用表单)。我用来调用form1的方法是这样的

procedure Tmainform.Button2Click(Sender: TObject);
var
f : Tform1;
begin
f:=Tform1.create(self);
f.parent:=Tabsheet1;
f.visible:=true;
f.align:=alClient;
end;

问题是为什么 Form1 中的 KeyPreview 不起作用,即使我已经激活了他的 KeyPreview 是真的?

4

1 回答 1

2

如果存在,则在function TWinControl.DoKeyDown(var Message: TWMKey): Boolean;调用中委托给父级。

步骤

procedure TWinControl.KeyDown(var Key: Word; Shift: TShiftState);
begin
  if Assigned(FOnKeyDown) then FOnKeyDown(Self, Key, Shift);
end;

如果 Form 是父级,则不会被调用

function TWinControl.DoKeyDown(var Message: TWMKey): Boolean;
var
  ShiftState: TShiftState;
  Form, FormParent: TCustomForm;
  LCharCode: Word;
begin
  Result := True;
  { First give the immediate parent form a try at the Message }
  Form := GetParentForm(Self, False);
  if (Form <> nil) and (Form <> Self) then 
  begin
    //  >> -- the DoKeyDown of the parent (not of your form) will be called 
    if Form.KeyPreview and TWinControl(Form).DoKeyDown(Message) then
      Exit;
    { If that didn't work, see if that Form has a parent (ie: it is docked) }
    if Form.Parent <> nil then 
    begin
      FormParent := GetParentForm(Form);
      if (FormParent <> nil) and (FormParent <> Form) and FormParent.KeyPreview and
          TWinControl(FormParent).DoKeyDown(Message) then
        Exit;
    end;
  end;
......
于 2012-12-09T16:28:39.063 回答