作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 Delphi 7 中创建了一个已发布的 TBitmap 属性。我可以在设计时通过编辑器设置其值,如果我记得编辑器,我可以看到正确的图片。但是当我保存、关闭并重新打开表单时,TBitmap 属性为空。缺什么?我知道有加载的虚拟方法。但我应该在里面做什么呢?
TCustomComponent = class ( TComponent )
private
fBitmap : TBitmap;
protected
procedure loaded; override;
procedure setBitmap( bitmap_ : TBitmap );
public
constructor create( owner_ : TComponent ); override;
destructor destroy; override;
published
property bitmap : TBitmap read fBitmap write setBitmap;
end;
procedure TCustomComponent.loaded;
begin
inherited loaded;
// ???
end;
procedure TCustomComponent.setBitmap( bitmap_ : TBitmap );
begin
fBitmap.assign( bitmap_ );
end;
constructor TCustomComponent.create( owner_ : TComponent );
begin
inherited create( owner_ );
fBitmap := TBitmap.create;
end;
destructor TCustomComponent.destroy;
begin
fBitmap.free;
inherited destroy;
end;
最佳答案
我认为处理此问题的传统方法是使用 TPicture
而不是 TBitmap
来发布属性。 TPicture
组件支持流媒体和设计器。
关于delphi - 如何从 DFM 流式传输已发布的 TBitmap 属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37166311/
我是一名优秀的程序员,十分优秀!