如何从System.Windows.Forms.Control继承元件 |
尚未結案
|
mustapha.wang
資深會員 發表:89 回覆:409 積分:274 註冊:2002-03-13 發送簡訊給我 |
看.net的说明,可以overridel类System.Windows.Forms.Control的Paint方法,可是我在delphi8里写:
TWeiQi=class(System.Windows.Forms.Control) protected procedure Paint;override; end;编译总是报错:Method 'Paint' not found in base class 久病成良医--多试 千人之诺诺,不如一士之谔谔--兼听
------
江上何人初见月,江月何年初照人 |
conundrum
尊榮會員 發表:893 回覆:1272 積分:643 註冊:2004-01-06 發送簡訊給我 |
|
code6421
版主 發表:43 回覆:223 積分:208 註冊:2002-08-16 發送簡訊給我 |
引言: 看.net的说明,可以overridel类System.Windows.Forms.Control的Paint方法,可是我在delphi8里写:Paint 是事件,不是方法. 你可以覆載OnPaint.TWeiQi=class(System.Windows.Forms.Control) protected procedure Paint;override; end;编译总是报错:Method 'Paint' not found in base class 久病成良医--多试 千人之诺诺,不如一士之谔谔--兼听 unit Class1; interface uses System.Windows.Forms; type TClass1 = class(System.Windows.Forms.Control) private { Private Declarations } strict protected procedure OnPaint(e:PaintEventArgs);override; public end; implementation procedure TClass1.OnPaint(e:PaintEventArgs); begin inherited OnPaint(e); end; end.Just coding... Taiwan:http://code6421.ktop.com.tw China:http://home.hoolee.com/~code6421
------
Just codeing... |
mustapha.wang
資深會員 發表:89 回覆:409 積分:274 註冊:2002-03-13 發送簡訊給我 |
我原来写的是procedure OnPaint;override;编辑器也报错:
Method 'OnPaint' not found in base class
原来要写全参数才行,在D7之前不会,这是不是D8的一个信息错报呢? Paint是事件,OnPaint是方法,MS怎么跟delphi对着干呢?
久病成良医--多试
千人之诺诺,不如一士之谔谔--兼听 發表人 - mustapha.wang 於 2004/02/26 10:38:30
------
江上何人初见月,江月何年初照人 |
本站聲明 |
1. 本論壇為無營利行為之開放平台,所有文章都是由網友自行張貼,如牽涉到法律糾紛一切與本站無關。 2. 假如網友發表之內容涉及侵權,而損及您的利益,請立即通知版主刪除。 3. 請勿批評中華民國元首及政府或批評各政黨,是藍是綠本站無權干涉,但這裡不是政治性論壇! |