老师,窗口2有个SQLQuery表,DrawCell事件没有起作用,请您给看看。谢谢了!在窗口2 AfterLoad事件中,代码如下:If tb0.Cols(tb0.ColSel).name = "检测_内容" Then
Tables("窗口2_table1").DataSource = DataTables(jgb)
Tables("窗口2_table1").Filter = cexp("[专业]='{0}' and [次分类]='{1}'and [选择规则]='{2}' ",tb0.current("专业"),tb0.current("检测_类别"),"参数")
Dim cvs As String="次分类|93|收费项目|151|单项价格|54|项目单位|80|检验条件|180|备注|120"
Tables("窗口2_table1").SetColVisibleWidth(cvs)
End If
For Each dtb As DataTable In DataTables
dtb.AddUserStyle("style_选中", Color.CornflowerBlue, Color.white)
Next
-------------------------------------------------------------------------------------
该表的 DrawCell事件中代码如下:
If e.Row.Checked =True Then
e.Style = "style_选中"
End If
-------------------------------------------------------------------------------------------------------
选中该行,checked = true,DrawCell事件不起作用(会偶尔起作用一次,之后就不起作用)
我在AfterLoad事件中加入如下代码:
DataTables(jgb).AddUserStyle("style_选中", Color.CornflowerBlue, Color.white)
也不行。
[此贴子已经被作者于2020/5/31 23:30:50编辑过]