replacing the private variable of public members with dependancy properties
Public StatusProperty As DependencyProperty = _
DependencyProperty.RegisterAttached(“Status”, GetType(String), GetType(Window))
Property Status() As String
Get
Return GetValue(StatusProperty)
End Get
Set(ByVal value As String)
SetValue(StatusProperty, value)
End Set
End Property
About this entry
You’re currently reading “replacing the private variable of public members with dependancy properties,” an entry on Creator of Cool
- Published:
- April 24, 2008 / 4:40 pm
- Category:
- Programming
No comments yet
Jump to comment form | comment rss [?] | trackback uri [?]