如何將listview裡的縮圖移到listview2 |
答題得分者是:careychen
|
hungjeff
一般會員 發表:10 回覆:9 積分:3 註冊:2007-02-22 發送簡訊給我 |
請問各位大大,我要將listview顯示的縮圖加入到listview2,請問該如何做呢?
下面的function可以將listview的縮圖加到listview2但是全都顯示listview1第一張的圖片,但是檔名是確定的,只是顯示的圖片都是第一張。 function MoveLvItem(lvOrig,lvdest:TlistView;checked:boolean=false):string; var i,j:integer; itemlist:TObjectlist; listitem,newlistitem:TListItem; begin ItemList:=TObjectList.Create(false); if not checked then begin for i:=lvOrig.Selected.Index to lvOrig.Items.Count -1 do begin if lvorig.Items[i].Selected then ItemList.Add(lvorig.Items[i]); end; end else begin for i:=0 to lvorig.Items.Count -1 do begin if lvorig.Items[i].Checked then itemlist.Add(lvorig.Items[i]); end; end; for i:=0 to itemlist.Count -1 do begin listitem:=itemList[i] as TlistItem; newlistitem:= lvdest.Items.Add; newlistitem.Caption:=listitem.Caption; for j:= 0 to listitem.SubItems.Count -1 do begin newlistitem.SubItems.Add(listitem.SubItems[j]); end; end; result:=(itemList[0] as TListItem).Caption; (ItemList[0] as TlistItem).Delete; for i:= 1 to ItemList.Count -1 do begin result:=Result ',' (Itemlist[-1] as TListItem).Caption; (ItemList[1] as TListItem).Delete; end; ItemList.Free; end; |
careychen
尊榮會員 發表:41 回覆:580 積分:959 註冊:2004-03-03 發送簡訊給我 |
請注意一下, lvDest 這個 listview 是不是有指定 LargeImages,SmallImages,StateImages 的相關屬性
如果有的話,請加下列那一行紅色的,應該就有了~! ===================引 用 hungjeff 文 章=================== 請問各位大大,我要將listview顯示的縮圖加入到listview2,請問該如何做呢? 下面的function可以將listview的縮圖加到listview2但是全都顯示listview1第一張的圖片,但是檔名是確定的,只是顯示的圖片都是第一張。 function MoveLvItem(lvOrig,lvdest:TlistView;checked:boolean=false):string; var i,j:integer; itemlist:TObjectlist; listitem,newlistitem:TListItem; begin ItemList:=TObjectList.Create(false); if not checked then begin for i:=lvOrig.Selected.Index to lvOrig.Items.Count -1 do begin if lvorig.Items[i].Selected then ItemList.Add(lvorig.Items[i]); end; end else begin for i:=0 to lvorig.Items.Count -1 do begin if lvorig.Items[i].Checked then itemlist.Add(lvorig.Items[i]); end; end; for i:=0 to itemlist.Count -1 do begin listitem:=itemList[i] as TlistItem; newlistitem:= lvdest.Items.Add; newlistitem.ImageIndex := listitem.ImageIndex; // 加這行試試 newlistitem.Caption:=listitem.Caption; for j:= 0 to listitem.SubItems.Count -1 do begin newlistitem.SubItems.Add(listitem.SubItems[j]); end; end; result:=(itemList[0] as TListItem).Caption; (ItemList[0] as TlistItem).Delete; for i:= 1 to ItemList.Count -1 do begin result:=Result ',' (Itemlist[-1] as TListItem).Caption; (ItemList[1] as TListItem).Delete; end; ItemList.Free; end;
------
價值的展現,來自於你用哪一個角度來看待它!!
編輯記錄
careychen 重新編輯於 2008-08-07 19:10:47, 註解 無‧
|
hungjeff
一般會員 發表:10 回覆:9 積分:3 註冊:2007-02-22 發送簡訊給我 |
謝謝careychen大大,那再請問一下,我想要用托曳的功能但是托過去只有縮圖是正確,沒有檔名,請大大再幫我看一下,謝謝
下列程式是listview1托曳到listview2的程式碼: procedure TForm1.ListView2DragDrop(Sender, Source: TObject; X, Y: Integer); var i: integer; LV: TListView; begin LV := (Source as TListView); for i:=0 to LV.Items.Count-1 do if LV.Items[i].Selected then ListView2.Items.AddItem(LV.Items[i]); end; procedure TForm1.ListView2DragOver(Sender, Source: TObject; X, Y: Integer; State: TDragState; var Accept: Boolean); begin Accept := Source = ListView1; end; |
careychen
尊榮會員 發表:41 回覆:580 積分:959 註冊:2004-03-03 發送簡訊給我 |
請改下列這樣
===================引 用 hungjeff 文 章=================== 謝謝careychen大大,那再請問一下,我想要用托曳的功能但是托過去只有縮圖是正確,沒有檔名,請大大再幫我看一下,謝謝 下列程式是listview1托曳到listview2的程式碼: procedure TForm1.ListView2DragDrop(Sender, Source: TObject; X, Y: Integer); var i: integer; LV: TListView; begin LV := (Source as TListView); // i這樣會不行的原因是 Owner 不同 for i:=0 to LV.Items.Count-1 do if LV.Items[i].Selected then (ListView2.Items.Add).Assign((LV.Items[i])); end; procedure TForm1.ListView2DragOver(Sender, Source: TObject; X, Y: Integer; State: TDragState; var Accept: Boolean); begin Accept := Source = ListView1; end;
------
價值的展現,來自於你用哪一個角度來看待它!!
編輯記錄
careychen 重新編輯於 2008-08-08 21:39:06, 註解 無‧
|
hungjeff
一般會員 發表:10 回覆:9 積分:3 註冊:2007-02-22 發送簡訊給我 |
|
careychen
尊榮會員 發表:41 回覆:580 積分:959 註冊:2004-03-03 發送簡訊給我 |
|
hungjeff
一般會員 發表:10 回覆:9 積分:3 註冊:2007-02-22 發送簡訊給我 |
|
careychen
尊榮會員 發表:41 回覆:580 積分:959 註冊:2004-03-03 發送簡訊給我 |
|
hungjeff
一般會員 發表:10 回覆:9 積分:3 註冊:2007-02-22 發送簡訊給我 |
|
careychen
尊榮會員 發表:41 回覆:580 積分:959 註冊:2004-03-03 發送簡訊給我 |
後來我第二次打開,跑一跑只出現這個訊息,而這個出現的方式,是我去網上砍了我第一次產生的
的【未命名相簿】之後,再開程式所產生的 http://delphi.ktop.com.tw/download.php?download=upload/489fdbef49057_Error-1.JPG 我後來弄了一下,發現是我如果是第一次進無名小站,而且在使用確認信之後,就把上傳小幫手打開的話 一堆 Error 就出現了,可能他也發現了 Error,所以我第二次進入時,我發現我的上面多了一個【未命名相簿】 錯誤就減少了 ===================引 用 hungjeff 文 章=================== 大大你是說什麼程式出現錯誤訊息啊,無名上傳小幫手應該是不會有錯誤訊息吧@@ 還是大大有興趣看一下我寫的程式。 你先寫一寫吧,寫完後再發表給大家看一看,讓我們學習學習
------
價值的展現,來自於你用哪一個角度來看待它!! |
hungjeff
一般會員 發表:10 回覆:9 積分:3 註冊:2007-02-22 發送簡訊給我 |
|
careychen
尊榮會員 發表:41 回覆:580 積分:959 註冊:2004-03-03 發送簡訊給我 |
本站聲明 |
1. 本論壇為無營利行為之開放平台,所有文章都是由網友自行張貼,如牽涉到法律糾紛一切與本站無關。 2. 假如網友發表之內容涉及侵權,而損及您的利益,請立即通知版主刪除。 3. 請勿批評中華民國元首及政府或批評各政黨,是藍是綠本站無權干涉,但這裡不是政治性論壇! |