<sg:GcSpreadGrid> <sg:GcSpreadGrid.Columns> <sg:Column> <sg:Column.CellType> <sg:ButtonCellType Content="Button"/> </sg:Column.CellType> </sg:Column> </sg:GcSpreadGrid.Columns> </sg:GcSpreadGrid>
ButtonCellType button = new ButtonCellType(); button.Content = "button"; gcSpreadGrid1.Columns[0].CellType = button;
Dim button As New ButtonCellType() button.Content = "button" gcSpreadGrid1.Columns(0).CellType = button