Guest User

Untitled

a guest
Jan 21st, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. public class ClassName
  2. {
  3. #region Properties
  4.  
  5. #endregion Properties
  6.  
  7. public ClassName()
  8. {
  9.  
  10. }
  11.  
  12. #region Methods
  13.  
  14. #endregion Methods
  15. }
  16.  
  17. public class XamarinViewModel
  18. {
  19. #region Properties
  20.  
  21. #region - Interfaces
  22.  
  23. #endregion - Interfaces
  24.  
  25. #region - Delegate Commands
  26.  
  27. #endregion - Delegate Commands
  28.  
  29. #region - Class Properties
  30.  
  31. private readonly string _className;
  32.  
  33. #endregion - Class Properties
  34.  
  35. #endregion Properties
  36.  
  37. public XamarinViewModel()
  38. {
  39. _className = this.GetType().Name;
  40. }
  41.  
  42. #region Methods
  43.  
  44. #region - OnCommand Methods
  45.  
  46. #endregion - OnCommand Methods
  47.  
  48. #endregion Methods
  49. }
  50.  
  51. public class XamarinControl
  52. {
  53. #region Properties
  54.  
  55. #region - Bindable Property Declaration
  56.  
  57. #endregion - Bindable Property Declaration
  58.  
  59. #region - Bindable Properties
  60.  
  61. #endregion - Bindable Properties
  62.  
  63. #region - Class Properties
  64.  
  65. #endregion - Class Properties
  66.  
  67. #endregion Properties
  68.  
  69. public XamarinViewModel()
  70. {
  71.  
  72. }
  73.  
  74. #region Methods
  75.  
  76. #region - Binded Property Changed Methods
  77.  
  78. #endregion - Binded Property Changed Methods
  79.  
  80. #endregion Methods
  81. }
Add Comment
Please, Sign In to add comment