up vote 11 down vote favorite
4
share [g+] share [fb]

Let's say I have a class:

class Foo
{
  public string Bar
  {
    get { ... }
  }

  public string this[int index]
  {
    get { ... }
  }
}

I can bind to these two properties using "{Binding Path=Bar}" and "{Binding Path=[x]}". Fine.

Now let's say I want to implement INotifyPropertyChanged:

class Foo : INotifyPropertyChanged
{
  public string Bar
  {
    get { ... }
    set
    {
      ...

      if( PropertyChanged != null )
      {
        PropertyChanged( this, new PropertyChangedEventArgs( "Bar" ) );
      }
    }
  }

  public string this[int index]
  {
    get { ... }
    set
    {
      ...

      if( PropertyChanged != null )
      {
        PropertyChanged( this, new PropertyChangedEventArgs( "????" ) );
      }
    }
  }

  public event PropertyChangedEventHandler PropertyChanged;
}

What goes in the part marked ????? (I've tried string.Format("[{0}]", index) and it doesn't work). Is this a bug in WPF, is there an alternative syntax, or is it simply that INotifyPropertyChanged isn't as powerful as normal binding?

link|improve this question

feedback

3 Answers

up vote 8 down vote accepted

Thanks to Cameron's suggestion, I've found the correct syntax, which is:

Item[]

Which updates everything (all index values) bound to that indexed property.

link|improve this answer
feedback

Don't know for sure if this'll work, but reflector shows that the get and set methods for an indexed property are called get_Item and set_Item. Perhaps you could try Item and see if that works.

link|improve this answer
feedback
PropertyChanged( this, new PropertyChangedEventArgs( "Item[]" ) )

for all indexes and

PropertyChanged( this, new PropertyChangedEventArgs( "Item[" + index + "]" ) )

for a single item

greetings, jerod

link|improve this answer
Did you try this? PropertyChangedEventArgs("Item[" + key + "]") does not work for me with a string key. – emddudley Jun 2 '10 at 13:19
Nor for me with an integer :( – VitalyB Sep 1 '10 at 9:58
PropertyChangedEventArgs("Item[" + key + "]") does not work for me either, although I sure would like it to! – Cameron Peters Aug 22 '11 at 20:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.