参考:https://www.cnblogs.com/liessay/p/5267221.html
1]: Picture:载入要显示的图片,也可从 DEV自带 Icon Library库里选择
2]: Properties->Caption在没有内容的时候显示在图片框中间的文字
3]: Properties->PopupMenuLayout->MenuItems可选择需要显示在图片上的右键菜单命令
4] 用代码 转入 保存 图片
//载入图片 procedure TForm1.Button2Click(Sender: TObject); begin if OpenDialog1.Execute then begin cxImage1.Picture.LoadFromFile(OpenDialog1.FileName); end; end; //保存图片 procedure TForm1.Button3Click(Sender: TObject); begin if SavePictureDialog1.Execute then begin cxImage1.Picture.SaveToFile(SavePictureDialog1.FileName); end; end;
标签:Picture,begin,end,17,Execute,cxImage1,图片 From: https://www.cnblogs.com/tulater/p/17846978.html