📜  vb.net 中 Infragistics Ultragrid 中的十进制数字格式 - NAYCode.com - 无论代码示例

📅  最后修改于: 2022-03-11 15:00:41.551000             🧑  作者: Mango

代码示例1
'' ************** Source NAYCode.com
 
 Dim band As UltraGridBand = Me.UltraGrid1.DisplayLayout.Bands(0)

            For Each row As UltraGridRow In Me.UltraGrid1.Rows.GetRowEnumeratorGridRowType.DataRow,

                       Nothing, Nothing)

                If row.Band.Index = 0 Then
                   If row.Cells("QTY").Value = 0 Then
                            row.RowSelectorAppearance.ImageBackground = 
                            My.Resources.ResourceManager.GetObject("BulletRedLarge")
                    End If
                End If

            Next