Guest User

Untitled

a guest
Oct 17th, 2017
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. namespace VHA.PPL.Silverlight.Common.Utilities
  2. {
  3. using System;
  4. using System.ComponentModel;
  5. using System.Globalization;
  6. using System.Windows.Browser;
  7. using VHA.PPL.Silverlight.Common.Resources;
  8.  
  9. /// <summary>
  10. /// Wraps access to the strongly typed resource classes so that you can bind
  11. /// control properties to resource strings in XAML
  12. /// </summary>
  13. public sealed class ResourceWrapper
  14. {
  15. private static ApplicationStrings applicationStrings = new ApplicationStrings();
  16. private static SecurityQuestions securityQuestions = new SecurityQuestions();
  17.  
  18. /// <summary>
  19. /// Gets the <see cref="ApplicationStrings"/>.
  20. /// </summary>
  21. public ApplicationStrings ApplicationStrings
  22. {
  23. get { return applicationStrings; }
  24. }
  25.  
  26. /// <summary>
  27. /// Gets the <see cref="SecurityQuestions"/>.
  28. /// </summary>
  29. public SecurityQuestions SecurityQuestions
  30. {
  31. get { return securityQuestions; }
  32. }
  33. }
  34. }
Add Comment
Please, Sign In to add comment