Brandon Moore
Brandon Moore

Reputation: 8790

What namespace is IActionCommand in?

I found an example of something I want to do here: http://csharprambling.wordpress.com/2011/08/15/true-mvvm-by-implementing-event-triggers-for-non-button-base-controls-in-silverlight/

But for the life of me I can't seem to find out where the heck the IActionCommand<> interface is located and googling it turns up surpisingly little information.

Upvotes: 1

Views: 120

Answers (1)

Reed Copsey
Reed Copsey

Reputation: 564741

IActionCommand<T> is not part of the framework, and likely part of a 3rd party MVVM Library. (This is a common interface in many libraries, such as Jounce.)

Upvotes: 1

Related Questions