Question

I want to know how to bind WPF controls to a WCF Service, I only find references to bind to a WCF Data Service

Was it helpful?

Solution

You need to first make a call to access data from the service. See this introduction for how to do that. (It sounds like you already have an existing service so you will just need to consume it.) Once you have successfully retrieved data from the service you can set the data context of your view (I assume you are using vanilla WPF without an MVVM setup since this question is basic) and bind to the data.


Edit: Here is a tutorial describing what you need.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top