在Asphyre Pro 1.1.1中
在程序中代码如下:
procedure TForm1.FormKeyDown(Sender: TObject; var Key: Word;
Shift: TShiftState);
begin
if (Key = VK_F1) then //this can't change at runtime?!!
begin
AsphyreDevice.HardwareTL := not AsphyreDevice.HardwareTL;
// AsphyreDevice.InitDevice();
end;
end;