Advertisement
Guest User

Untitled

a guest
Feb 21st, 2017
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. // In your Forms shared code
  2.  
  3. using System;
  4. using Xamarin.Forms;
  5.  
  6. namespace FormsPlayground
  7. {
  8. public class DisabledTitleColorEffect : RoutingEffect
  9. {
  10. string _disabledColor;
  11. public string DisabledColor
  12. {
  13. get
  14. {
  15. return _disabledColor;
  16. }
  17. set
  18. {
  19. _disabledColor = value;
  20. }
  21. }
  22.  
  23. public DisabledTitleColorEffect() : base ("FormsPlayground.DisabledTitleColorEffect")
  24. {
  25.  
  26. }
  27. }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement