Advertisement
Guest User

Untitled

a guest
Sep 25th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. public static DependencyProperty ListIDProperty = DependencyProperty.Register(
  2. "ListID", typeof(string), typeof(BusyDataView));
  3.  
  4. public string ListID
  5. {
  6. get
  7. {
  8. return (string)GetValue(ListIDProperty);
  9. }
  10.  
  11. set
  12. {
  13. var busyDataService = (BusyDataService)this.Resources["busyDataService"];
  14. busyDataService.ListID = ListID;
  15. SetValue(ListIDProperty, value);
  16. }
  17.  
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement