从 OnDrawCell 事件外部绘制 TStringGrid 单元格,可能吗?
有没有什么方法可以在不使用 OnDrawCell 事件的情况下在 Delphi 的 TStringGrid 上绘制特定单元格,例如,如果我单击按钮,则将根据其内容绘制指定单元格。
Is there any way to paint specific cells on Delphi's TStringGrid without using the OnDrawCell event, for instance if I click a button the specified cells will be painted depending on their content.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
为了保持绘画的持久性,你应该这样做:
,以不同的方式绘制您区分的单元格--jeroen
To keep the painting persistent, the way you should do this is as follows:
--jeroen
不,那是不可能的。下次 Windows 决定重绘控件(您无法真正控制的东西)时,您绘制的所有内容都将被控件的
Paint
方法和所有与绘制相关的事件覆盖。正如 Jeroen 指出的那样,您必须使用事件方法来进行自定义绘画。
No, that is not possible. The next time Windows decides to redraw the control (something you can't really control), everything you have drawn will be overpainted by the Control's
Paint
method and all painting-related events.You have to use the event approach to do custom painting like that as Jeroen points out.