Delphi 2005 的ListView元件的問題... |
尚未結案
|
te_hsun
一般會員 發表:43 回覆:34 積分:20 註冊:2002-03-25 發送簡訊給我 |
請問為什麼會這樣?
要如何解決在Create Form 時
ListView.SubItems不要秀那個白色的東西...
============================================================================ unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type TForm1 = class(TForm) Button1: TButton; procedure Button1Click(Sender: TObject); private { Private declarations } public { Public declarations } end; var Form1: TForm1; implementation uses unit2; {$R *.dfm} procedure TForm1.Button1Click(Sender: TObject); begin ShowForm; end; end. ============================================================================ unit Unit2; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, ComCtrls, ImgList, StdCtrls, ExtCtrls; type TForm2 = class(TForm) ImageList1: TImageList; ListView1: TListView; Panel1: TPanel; Button1: TButton; procedure Button1Click(Sender: TObject); procedure FormCreate(Sender: TObject); procedure FormShow(Sender: TObject); private { Private declarations } public end; var Form2: TForm2; function ShowForm: Boolean; implementation {$R *.dfm} function ShowForm: Boolean; var FListItem: TListItem; i: Integer; begin Result:= False; Form2:= TForm2.Create(Application); try with Form2 do begin for i:=0 to 2 do begin FListItem:= ListView1.Items.Add; FListItem.Caption:= 'Create以後,show 之前'; FListItem.SubItems.Add('Value'+IntToStr(i)); FListItem.ImageIndex:= 0; end; Result:= (ShowModal=mrOk); end; finally Form2.Free; end; end; procedure TForm2.FormShow(Sender: TObject); var FListItem: TListItem; i: Integer; begin for i:=0 to 2 do begin FListItem:= ListView1.Items.Add; FListItem.Caption:= 'FormShow事件'; FListItem.SubItems.Add('Value'+IntToStr(i)); FListItem.ImageIndex:= 0; end; end; procedure TForm2.FormCreate(Sender: TObject); var FListItem: TListItem; i: Integer; begin for i:=0 to 2 do begin FListItem:= ListView1.Items.Add; FListItem.Caption:= 'FormCreate事件'; FListItem.SubItems.Add('Value'+IntToStr(i)); FListItem.ImageIndex:= 0; end; end; procedure TForm2.Button1Click(Sender: TObject); var FListItem: TListItem; i: Integer; begin for i:=0 to 2 do begin FListItem:= ListView1.Items.Add; FListItem.Caption:= 'Show以後'; FListItem.SubItems.Add('Value'+IntToStr(i)); FListItem.ImageIndex:= 0; end; end; end. |
ATEIN
高階會員 發表:105 回覆:320 積分:125 註冊:2002-07-05 發送簡訊給我 |
|
te_hsun
一般會員 發表:43 回覆:34 積分:20 註冊:2002-03-25 發送簡訊給我 |
引言: 請您使用 Trim(您要去掉的空白字元)即可解決 因為,您的字串變數中有空白字元,因此要使用Trim 去掉空白字元。 有問題不行的話,請mail 程式檔案給我,我再幫您改吧! DHM那不是字元...我覺得應該是空白的圖示...@@ 在 Delphi 5 沒問題 在 Delphi 2005 就會這樣... 也就是 ListView 此元件(Delphi 2005)... 在Form Show 之前和 Show 之後..處理 ListView...結果會不同!! 不同之處是
|
本站聲明 |
1. 本論壇為無營利行為之開放平台,所有文章都是由網友自行張貼,如牽涉到法律糾紛一切與本站無關。 2. 假如網友發表之內容涉及侵權,而損及您的利益,請立即通知版主刪除。 3. 請勿批評中華民國元首及政府或批評各政黨,是藍是綠本站無權干涉,但這裡不是政治性論壇! |