I have installed the 2009 v.1 web client .exe and I can't find the commandframework.
do i need to Install something else as well?
This video demonstrates creating a custom command using our commanding framework:
http://community.infragistics.com/silverlight/media/p/125526.aspx
Hope that helps.
Devin
that video is what I'm trying to work along with. I apparently am missing a reference to the ViewModel base.
wehre is it?
The ViewModelBase is a class that I created in the sample project used in the video. The part you are intested in is the support for INotifyPropertyChanged. Here is the code for the file:
using System.Collections.Generic; using System.ComponentModel; namespace Silverlight92LOB.Views { public class ViewModelBase : INotifyPropertyChanged { #region INotifyPropertyChanged Support public event PropertyChangedEventHandler PropertyChanged; protected virtual void RaisePropertyChangedEvent(params string[] propertyNames) { if (this.PropertyChanged != null) { foreach (string name in propertyNames) { this.PropertyChanged(this, new PropertyChangedEventArgs(name)); } } } #endregion } }