Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

51 lignes
1.3 KiB

  1. using BPA.Helper;
  2. using BPA.UIControl;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace BPA.Model
  9. {
  10. public class ViewItem : NotifyBase
  11. {
  12. public ViewItem(string name, object content, IconType? iconType = null)
  13. {
  14. Name = name;
  15. Content = content;
  16. Icon = iconType;
  17. }
  18. public ViewItem()
  19. {
  20. }
  21. /// <summary>
  22. /// 名称
  23. /// </summary>
  24. public string Name { get { return _mName; } set { _mName = value; OnPropertyChanged(); } }
  25. private string _mName;
  26. /// <summary>
  27. /// 描述
  28. /// </summary>
  29. public string Description { get { return _mDescription; } set { _mDescription = value; OnPropertyChanged(); } }
  30. private string _mDescription;
  31. /// <summary>
  32. /// 内容
  33. /// </summary>
  34. public object Content { get { return _mContent; } set { _mContent = value; OnPropertyChanged(); } }
  35. private object _mContent;
  36. /// <summary>
  37. /// 图标类型
  38. /// </summary>
  39. public IconType? Icon { get { return _mIcon; } set { _mIcon = value; OnPropertyChanged(); } }
  40. private IconType? _mIcon;
  41. }
  42. }