/// The alignment of the terrain 地形的对齐模式enum Alignment//地形的对齐模式{/// Terrain is in the X/Z planeALIGN_X_Z 0, //地形的对其方式/// Terrain is in the X/Y planeALIGN_X_Y 1, /// Terrain is in the Y/Z planeALIGN_Y_Z 2};/** Structure encapsulating…
var i:integer1;
procedure TForm4.BitBtn1Click(Sender: TObject);
beginInc(i);
if i>ImageList1.Count-1 then i:0;ImageList1.GetBitmap(i,image1.Picture.Bitmap) ;
Self.Refresh;
end;转载于:https://www.cnblogs.com/xh0626/p/5078289.html