On my silverlight project I create this property :
private bool _isEnabled = true;
public bool IsEnabled
{
get
{
return _isEnabled;
}
set
{
_isEnabled = value;
RaisePropertyChanged("IsEnabled");
}
}
But it always return false instead of true Why is that ? Thanks,