在 Delphi 中将 TCheckBox 放入 TStringGrid 中
我想在 Delphi 中的特定列的每个单元格中的 TStringGrid
中放置一个 TCheckBox
。我正在使用德尔福XE。
I want to put a TCheckBox
inside a TStringGrid
in Delphi in every cell of certain column. I'm using Delphi XE.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您应该绘制自己的复选框,最好使用视觉主题(如果启用)。这是如何执行此操作的简单草图:
当然,在实际场景中,
Checked
数组不是常量,您可能希望保存s
指标和单元格绘制事件之间的h
主题句柄。但原理就在这里。这里缺少的是改变复选框状态的函数。您可能希望在
OnClick
处理程序中切换状态。如果您真的很认真,您还希望响应鼠标的运动,并在主题可用时在复选框上显示鼠标悬停效果。bluish 编辑:要切换复选框状态,此答案解释了如何使用
无效
方法。You should draw your own checkboxes, preferably using visual themes, if enabled. This is a simple sketch of how to do that:
Of course, in a real scenario, the
Checked
array is not a constant, and you might wish to save thes
metrics andh
theme handle between cell painting events. But the principle is here.What is missing here is a function to alter the state of the checkboxes. You will probably want to toggle the state in an
OnClick
handler. If you are really serious, you'll also wish to respond to the motion of the mouse, and display the mouse hover effect on the checkboxes if themes are available.EDIT by bluish: To toggle checkbox state, this answer explains how you can use
Invalidate
method.不要尝试将实际的
TCheckBox
控件放置在TStringGrid
内。使用网格的OnDrawCell
事件和 Win32 APIDrawFrameControl()
函数,根据需要在每个单元格内绘制 CheckBox 控件的图像。您可以将OnClick/OnMouse...
事件与网格的Objects[][]
属性结合使用,以根据需要跟踪每个单元格的选中状态。我发现这更容易管理,因为TStringGrid
并不是为托管真正的控件而设计的。Don't try to place an actual
TCheckBox
control inside aTStringGrid
. Use the grid'sOnDrawCell
event with the Win32 APIDrawFrameControl()
function instead, to draw an image of a CheckBox control inside each cell as needed. You can use theOnClick/OnMouse...
events with the grid'sObjects[][]
property to keep track of each cell's checked state as needed. I find this is a lot easier to manage, sinceTStringGrid
was not designed to host real controls.我使用由 Roman Mochalov 编写的名为 ExGridView 的虚拟网格,它支持复选框。
我自己修改的 GridView 分支,针对 Unicode 等进行了移植,名为 TExGridView,而不是 TGridView,并且带有复选框演示,位于 bitbucket 此处为/wpostma/exgridview。
ExGridView 组件在属性检查器中有一个 Checkbox 属性,必须将其设置为 true,然后您必须设置 Column 属性,以便 Column 的复选框类型设置为复选框或单选按钮。然后您必须实现 GetCheckState 事件回调。请参阅 bitbucket 项目中包含的演示。
此代码的原始来源是此处,但它无法在最近的版本上构建版本。我的 bitbucket 版本已经过测试,可与 Delphi 2007、2009 以及截至 2016 年最新的所有版本(Delphi 10 西雅图)一起使用。
I use a virtual grid called ExGridView by Roman Mochalov, that supports checkboxes.
My own modified fork of GridView, ported for Unicode etc, named TExGridView, instead of TGridView, and with a demo of checkboxes is on bitbucket here as /wpostma/exgridview.
The ExGridView component has a Checkbox property in the property inspector which must be set true, Then you must set up your Column properties so that the Column has a checkbox type set to checkbox or radio button. Then you must implement the GetCheckState event callback. See the demo included on the bitbucket project.
The original source for this code was here but it's not buildable on recent versions. My bitbucket version is tested and working with Delphi 2007, 2009, and all versions up to date as of 2016 (Delphi 10 Seattle).