我在我的 delphi 应用程序中使用 Tstringgrid ,该应用程序具有如下图所示的列
我正在检查和取消检查Table tb_attribute
attr_id | attribute_name
--------------------------
1 | Size
2 | Color
Table tb_variations
id | attr_id | variations_name
-----------------------------------
1 | 1 | XL
2 | 1 | SM
3 | 2 | Red
4 | 2 | Black
Now it shows
0-SM
0-Red
1-XL
1-Black
2-XL
2-Red
But I want to show
0 - SM - Red
1 - XL - Black
2 - XL - Red
事件上的单元格,但是在执行stringgridonselectcell
或mousewheelup
时也会触发mousewheeldown
事件。
我怎么知道stringgridonselectcell
是由用户触发的?
谢谢。