I have a Form with a DataGridView. The DataGridView's source is BindingList Here's the Tiger class:
public class Tiger
{
public string Name { get; set; }
public int Weight { get; set; }
public DateTime Born { get; set; }
public String Picture { get; set; }
public Tiger(string name, int weight, DateTime born)
{
Name = name;
Weight = weight;
Born = born;
Picture = "D:\\Dropbox\\Uni\\NET\\tigers";
}
}
I want the Picture column to show the Image with URI in the Picture field, not the string. How can I implement it?