Sorry for incorrectness, I meant the GraphicsColumn
In the nearest FlyGrid.Net updates ImageColumn will have more universal functionality and will support fetching image from its ImageList and from Node.Value.
[c#]
private void AddColumn(FlyGrid flyGrid, ImageList images)
{
flyGrid.BeginInit();
try
{
GraphicsColumn graphicsColumn = new GraphicsColumn("Image");
graphicsColumn.ImageList = images;
flyGrid.Columns.Items.Add(graphicsColumn);
NodeBase[] nodes = new NodeBase[] {
new Node(object[]{0}),
new Node(object[]{1}),
new Node(object[]{2}),
};
flyGrid.Rows.Items.AddRange(nodes);
}
finally
{
flyGrid.EndInit();
}
}