程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> Delphi >> 使用 IntraWeb (12)

使用 IntraWeb (12)

編輯:Delphi


TIWGradButton、TIWImageButton 分別是有顏色梯度變化按鈕和圖像按鈕.



TIWGradButton 所在單元及繼承鏈:
IWCompGradButton.TIWGradButton < TIWCustomControl < TIWBaseHTMLControl < TIWBaseControl < TIWVCLBaseControl < TControl < TComponent < TPersistent < TObject

主要成員:
property Style: TIWGradButtonStyle  //


這個 Style 不大好調配, 可以復制官方示例中的設置:


效果圖:



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;


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved