Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. private SolidColorBrush _bgcolor;
  2. public SolidColorBrush BGColor
  3. {
  4. get
  5. {
  6. return _bgcolor;
  7. }
  8. set
  9. {
  10. _bgcolor = value;
  11. RaisePropertyChanged(() => BGColor);
  12. }
  13. }
  14.  
  15. shell:SystemTray.BackgroundColor="{Binding BGColor}"
  16.  
  17. DataContext="{Binding Main, Source={StaticResource Locator}}"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement