Bläddra i källkod

Fixed colouring of Image cells in grids.

Kenric Nugteren 7 månader sedan
förälder
incheckning
3daac2f706
1 ändrade filer med 4 tillägg och 0 borttagningar
  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);
         }