delphi 7 TImage 和 TImageList
让我成为整数私有
代码
procedure TForm1.Image1Click(Sender: TObject);
begin
inc(i);
ImageList1.GetIcon(i mod 4,Image1.Picture.Icon);
end;
procedure TForm1.FormCreate(Sender: TObject);
begin
i:=0;
ImageList1.GetIcon(i mod 4,Image1.Picture.Icon);
end;
我如何从列表中拉伸图标以适应Image1的大小?
let i be integer private
the code
procedure TForm1.Image1Click(Sender: TObject);
begin
inc(i);
ImageList1.GetIcon(i mod 4,Image1.Picture.Icon);
end;
procedure TForm1.FormCreate(Sender: TObject);
begin
i:=0;
ImageList1.GetIcon(i mod 4,Image1.Picture.Icon);
end;
how do i stretch the icon from the list to fit the size of Image1?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
更好的方法
有时使用 Delphi 有点尴尬,因为 VCL 和本机 Windows API 之间的合作程度有些不清楚。如果上面的代码不起作用(我感觉它正在泄漏图标),这里有一个纯本机方法(
使用 ImgList、CommCtrl
):Better Approach
Sometimes it is a bit awkward to use Delphi since the extent of cooperation between the VCL and the native Windows API is somewhat unclear. If the above code doesn't work (I get the feeling it is leaking icons), here is a pure native approach (
uses ImgList, CommCtrl
):