新物件中設計屬性為 TPicture 的問題 |
尚未結案
|
silence
一般會員 發表:9 回覆:17 積分:10 註冊:2003-06-04 發送簡訊給我 |
我有自訂一個 Class
其中一個欄位 PIC 為 TPicture 的 type
但是在 design time 加入到 Form 上時, 都會有 AccessViolation....
而且 property editor 上, PIC 的值那格出現怪圖樣...
請問是少寫了什麼嗎?
為什麼不會像 TImage 的 Picture 一樣出現 [...] 的按鈕ㄋ?
TImage 的 source 裡的 .Create ,
也只有寫到 FPicture := TPicture.Create 而已啊, 為什麼就可以 work? 程式摘錄如下
type TTest = class(TControl)
private
FmyPIC: TPicture
procedure SetPic(Value: TPicture);
public
constructor Create(AOwner: TComponent);
published
property PIC: TPicture read FmyPIC write SetPic;
end; implementation constructor TTest.Create(AOwner: TComponent);
begin
inherited;
FmyPIC := TPicture.Create;
end; procedure TTest.SetPIC(Value: TPicture);
begin
FmyPIC .Assign(Value);
end;
|
hagar
版主 發表:143 回覆:4056 積分:4445 註冊:2002-04-14 發送簡訊給我 |
本站聲明 |
1. 本論壇為無營利行為之開放平台,所有文章都是由網友自行張貼,如牽涉到法律糾紛一切與本站無關。 2. 假如網友發表之內容涉及侵權,而損及您的利益,請立即通知版主刪除。 3. 請勿批評中華民國元首及政府或批評各政黨,是藍是綠本站無權干涉,但這裡不是政治性論壇! |