|
by John Papa via JohnPapa.net on 2/22/2010 9:53:00 PM
Implementing ICommand in your Silverlight 4 project only requires a few steps. I have had a dozens of questions about this lately so I decided to share a very simple technique to implement commanding in Silverlight 4. Step 1 – Implement ICommand The first step is to implement the ICommand interface with a class that will manage the commanding aspects. There are other options to do this, but here is a simplified yet powerful implementation of ICommand. The DelegatedCommand class implements I
... [ read more ]
|