Advertisement
Guest User

Untitled

a guest
Aug 18th, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. Public Shared ReadOnly AdrFoundColorProperty As DependencyProperty =
  2. DependencyProperty.Register("AdrFoundColor",
  3. GetType(Bursh),
  4. GetType(Model))
  5.  
  6. Public Property AdrFoundColor() As Boolean
  7. Get
  8. Return CBool(GetValue(AdrFoundColorProperty))
  9. End Get
  10. Set(ByVal value As Boolean)
  11. SetValue(AdrFoundColorProperty, value)
  12. End Set
  13. End Property
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement