首页 > 数据库技术 > 详细

使用 IntraWeb (12) - 基本控件之 TIWGradButton、TIWImageButton

时间:2014-06-13 20:08:43      阅读:454      评论:0      收藏:0      [点我收藏+]

TIWGradButton、TIWImageButton 分别是有颜色梯度变化按钮和图像按钮.

TIWGradButton 所在单元及继承链:
IWCompGradButton.TIWGradButton < TIWCustomControl < TIWBaseHTMLControl < TIWBaseControl < TIWVCLBaseControl < TControl < TComponent < TPersistent < TObject

主要成员:
property Style: TIWGradButtonStyle  //


这个 Style 不大好调配, 可以复制官方示例中的设置:


效果图:
bubuko.com,布布扣


TIWImageButton 所在单元及继承链:
IWCompExtCtrls.TIWImageButton < TIWImageFile < TIWCustomImage < TIWCustomControl < TIWBaseHTMLControl < TIWBaseControl < TIWVCLBaseControl < TControl < TComponent < TPersistent < TObject

主要成员:
property ImageFile: TIWFileReference    //图像
property HotImageFile: TIWFileReference //当鼠标指向时显示的图像


测试代码:
procedure TIWForm1.IWAppFormCreate(Sender: TObject);
begin
  IWImageButton1.ImageFile.Filename := ‘pic1.png‘; //pic1.png、pic2.png 放在 wwwroot 目录下
  IWImageButton1.HotImageFile.Filename := ‘pic2.png‘;
end;

procedure TIWForm1.IWImageButton1Click(Sender: TObject);
begin
  WebApplication.GoToURL(‘http://del.cnblogs.com‘);
end;


使用 IntraWeb (12) - 基本控件之 TIWGradButton、TIWImageButton,布布扣,bubuko.com

使用 IntraWeb (12) - 基本控件之 TIWGradButton、TIWImageButton

原文:http://www.cnblogs.com/del/p/3780801.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!