博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
打开图片
阅读量:5330 次
发布时间:2019-06-14

本文共 975 字,大约阅读时间需要 3 分钟。

窗体设计如图:

image button OpenPictureDialog 各一个

代码:

1 unit Unit1; 2  3 interface 4  5 uses 6   Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, 7   Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.ExtDlgs, Vcl.StdCtrls, Vcl.ExtCtrls; 8  9 type10   TForm1 = class(TForm)11     Image1: TImage;12     Button1: TButton;13     OpenPictureDialog1: TOpenPictureDialog;14     procedure Button1Click(Sender: TObject);15   private16     {
Private declarations }17 public18 {
Public declarations }19 end;20 21 var22 Form1: TForm1;23 24 implementation25 26 {
$R *.dfm}27 28 procedure TForm1.Button1Click(Sender: TObject);29 var30 openfilepath:string;31 begin32 if OpenPictureDialog1.Execute then33 begin34 openfilepath := OpenPictureDialog1.FileName;//把打开文件名字赋值给openfilepath35 Image1.Picture.LoadFromFile(openfilepath); //在image1打开图片36 end;37 38 end;39 40 end.

 

转载于:https://www.cnblogs.com/zty123/p/5983859.html

你可能感兴趣的文章
centos系统python2.7更新到3.5
查看>>
C#类与结构体究竟谁快——各种函数调用模式速度评测
查看>>
我到底要选择一种什么样的生活方式,度过这一辈子呢:人生自由与职业发展方向(下)...
查看>>
poj 题目分类
查看>>
windows 安装yaml支持和pytest支持等
查看>>
读书笔记:季羡林关于如何做研究学问的心得
查看>>
面向对象的优点
查看>>
套接口和I/O通信
查看>>
阿里巴巴面试之利用两个int值实现读写锁
查看>>
浅谈性能测试
查看>>
Winform 菜单和工具栏控件
查看>>
CDH版本大数据集群下搭建的Hue详细启动步骤(图文详解)
查看>>
巧用Win+R
查看>>
浅析原生js模仿addclass和removeclass
查看>>
Python中的greenlet包实现并发编程的入门教程
查看>>
java中遍历属性字段及值(常见方法)
查看>>
深入理解jQuery框架-框架结构
查看>>
YUI3自动加载树实现
查看>>
python知识思维导图
查看>>
当心JavaScript奇葩的逗号表达式
查看>>