在运行时查看 TImagelist 的内容
是否可以在运行时调用 TImagelist 编辑器来查看我的 TImagelist
的内容?
is possible invoke in runtime the TImagelist editor to see the contents of my TImagelist
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
该编辑器是设计时编辑器,在运行时不可用,但您可以通过调用其 Draw 方法并指定要绘制的图像的索引,在任何画布上绘制 ImageList 中保存的任何图像。下面的示例代码以垂直列表的形式绘制 Form1 上 ImageList1 中保存的所有图像:
That editor is a design-time editor and is not available at runtime, but you can draw any of the images saved inside an ImageList on any canvas by calling its Draw method and specifying index of the image which you want to draw. The sample code below draws all images saved inside ImageList1 on Form1 in a vertical list:
您可以将 ListView 放在某种表单上并执行如下操作:
You can drop a ListView on some form and do something like this:
CodeSite 有一个漂亮的代码记录器。您可以使用它来转储位图对象,并在记录器窗口中查看它。
http://www.raize.com/DevTools/CodeSite/Default.asp
CodeSite has a pretty code logger. You can use it to dump bitmap objects, and see it in the logger window.
http://www.raize.com/DevTools/CodeSite/Default.asp