Browse Source

Fixed colouring of Image cells in grids.

Kenric Nugteren 7 months ago
parent
commit
3daac2f706
1 changed files with 4 additions and 0 deletions
  1. 4 0
      inabox.wpf/DynamicGrid/UIComponent/DynamicGridGridUIComponent.cs

+ 4 - 0
inabox.wpf/DynamicGrid/UIComponent/DynamicGridGridUIComponent.cs

@@ -1115,6 +1115,10 @@ public class DynamicGridGridUIComponent<T> : IDynamicGridUIComponent<T>, IDynami
 
             newcol.HeaderStyle = GetHeaderCellStyle(column);
 
+            var cellstyle = GetCellStyle(column);
+            AddCellStyleConverters(cellstyle, column, sColName);
+            newcol.CellStyle = cellstyle;
+
             DataGrid.Columns.Add(newcol);
             ColumnList.Add(column);
         }