Datagridview Image Column

0
0

Hi All,

I was just wondering how to set an Image using the DataPropertyName of the DataGridView?

I have all the Images as part of my project resources but not sure how to set the Image inside my BindingList which implements INotifyPropertyChanged.

So I have something like this:-

public Image DeviceImage {

get { return _deviceImage; }

set {

_deviceImage = value;

OnPropertyChanged();

}

}

Thanks,

Brayden

  • You must to post comments
0
0

Hi Brayden,

your question is not entirely clear to me. Can you please try to set up a simple test case where you mark the code that´s unclear to you.
I guess we´ll be able to help you much better then.

Best regards
Frank

  • You must to post comments
Showing 1 result
Your Answer

Please first to submit.