手机
当前位置:查字典教程网 >编程开发 >Delphi >Delphi实例演示Rect、Bounds生成TRect的区别
Delphi实例演示Rect、Bounds生成TRect的区别
摘要:本文以实例演示Rect、Bounds生成TRect的区别,实例代码如下:unitUnit1;interfaceusesWindows,Mes...

本文以实例演示Rect、Bounds生成TRect的区别,实例代码如下:

unitUnit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, ExtCtrls; type TForm1 = class(TForm) Button1: TButton; RadioGroup1: TRadioGroup; procedure RadioGroup1Click(Sender: TObject); procedure FormCreate(Sender: TObject); end; var Form1: TForm1; implementation {$R *.dfm} var R: TRect; procedure TForm1.FormCreate(Sender: TObject); begin RadioGroup1.Items.CommaText := 'Undo,Rect,Bounds'; R := Button1.BoundsRect; end; procedure TForm1.RadioGroup1Click(Sender: TObject); begin case RadioGroup1.ItemIndex of 0: Button1.BoundsRect := R; 1: Button1.BoundsRect := Rect(50,50,100,80); {参数3、4 是一个点} 2: Button1.BoundsRect := Bounds(50,50,100,80);{参数3、4 分别是宽度与高度} end; end; end.

最终实现效果图如下:

Delphi实例演示Rect、Bounds生成TRect的区别1

【Delphi实例演示Rect、Bounds生成TRect的区别】相关文章:

Delphi用TActionList实现下载文件的方法

在Delphi实现在数据库中存取图像的图文演示无错

Delphi实现窗体感知鼠标滑过并自动隐藏与显示窗口的方法

截取指定符号之间的字符串(随机读取)delphi实例代码

Delphi实现毫秒级别的倒计时实例代码

Delphi实现检测并枚举系统安装的打印机的方法

Delphi实现窗口文字淡入淡出渐变效果的方法

Delphi实现图片滚动切换的完整实例代码

Delphi 生成excel中饼图的实例代码

Delphi远程连接Mysql的实现方法

精品推荐
分类导航