Whats the best way to pass an image in wcf service, and after passing it display it in a wpf datagrid?
|
|
I'm not saying this is the only or the best solution, but we have it working like this: What you need to do is: Create a WCF method that would return the image by some id or whatever. It should return byte array (byte[]):
In your data class (objects displayed in the grid) make a property Image, its getter should call the WCF method and convert byte array to a BitmapImage:
In your cell template (or wherever) put an Image control and bind its Source property to the Image property created above:
The simplest way to not make UI freeze when retrieving the images would be setting IsAsync property to false like I did. But there's a lot to improve. E.g. you could show some loading animation while the Image is being loaded. Showing something while loading something else can be accomplished using PriorityBinding (you can read about it here: http://msdn.microsoft.com/en-us/library/ms753174.aspx). |
|||||||||
|
|
Can you load the WPF image from a stream? If so, then you can write the WCF service to return the System.IO.Stream type. |
|||||
|