Using class properties and INotifyPropertyChanged question?

  • Thread starter Thread starter Shan1986
  • Start date Start date
S

Shan1986

Guest
Hi,

I have class properties defined like this

Class Dog
Public Property Name As String
Public Property Weight As Integer
End Class

Name and weight properties are data bound.

if i set the properties like this, how do i use INotifyPropertyChanged? or i must use get , set method?

if i have to use get set , do i have to use INotifyPropertyChanged for each property or is there a way say all properties in Dog is changed?

thanks

Continue reading...
 
Back
Top