I have tried to bind the column in this way
GridSwitchColumn AccColumn = new GridSwitchColumn();
AccColumn.HeaderText = "ACCANTONAMENTO";
AccColumn.MappingName = "Accantonamento";
AccColumn.Width = 130;
AccColumn.SetBinding(GridSwitchColumn.AllowEditingProperty, new Binding("IsEnableEdit"));
ListArtForNewDoc.Columns.Add(AccColumn);
seems that the binding does not work?
I have to do something else in the behind code?
Alberto C.