[Error] Unit1.pas(27): Declaration expected but 'IF' found
procedure TForm1.FormKeyPress(Sender: TObject; var Key: Char);if Key in ['v'] then
begin
if Clipboard.HasFormat(CF_BITMAP) then
Image1.Picture.Bitmap.Assign(Clipboard);
end;
在这上面我没有引用ClipBrd但是出现标题错误的原因是什么?