Public Class WeatherReport
Private _mStationName As String
<Bindable(True)> _
Public Property WeatherStationName() As String
Get
Return _mStationName
End Get
Set (value As String)
_mStationName = value
End Set
End Property
End Class
I want to bind a class's properties to a control or a group of controls.
Could you give some starter reading directions or where to look for Databiding with objects (not datasets)?
Thanks..