问题描述
如何添加我的图标到组件调色板页面中创建的组件?
How to add my icon to my created component in the component palette page?
推荐答案
要向组件添加图标,您需要使用Delphi图像编辑器创建dcr文件。
在图像编辑器中创建位图24x24 16位。将位图重命名为控制名称。
示例:TMyCustomControl - TMyCustomControl(同名)
将dcr文件保存在包含任何名称的文件夹中(例如:Icon.dcr)。
然后打开您的包,然后右键单击 - >查看源。
添加行:
{$ R'dcr filename'}
在这种情况下:
{$ R'Icon.dcr'}
单击编译并安装。
你去了您已经用图标创建了自己的组件。 :)
To add icon to component you need to create dcr file using Delphi image editor.
In image editor create bitmap 24x24 16 bit. Rename bitmap to your control name.
Example: TMyCustomControl - TMyCustomControl (same name)
Save dcr file in the folder where the package is with any name (example: Icon.dcr).
Then open your package and right click -> View source.
Add line :
{$R 'The dcr filename'}
In this case:{$R 'Icon.dcr'}
Click Compile and Install.
There you go. You have created your own component with icon. :)
这篇关于如何在组件调色板页面中将图标添加到组件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!