ToolItem.cs 980 B

12345678910111213141516171819202122232425262728293031323334
  1. using PDF_Office.Helper;
  2. using Prism.Mvvm;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.ComponentModel;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. namespace PDF_Office.Model.PDFTool
  10. {
  11. public class ToolItem1 : INotifyPropertyChanged
  12. {
  13. public event PropertyChangedEventHandler PropertyChanged = delegate { };
  14. private bool _isShowConciseContent = false;
  15. public bool IsShowConciseContent
  16. {
  17. get { return _isShowConciseContent; }
  18. set
  19. {
  20. _isShowConciseContent = value;
  21. PropertyChanged(this, new PropertyChangedEventArgs("IsShowConciseContent"));
  22. }
  23. }
  24. public bool IsNewTool { get; set; }
  25. public int Id { get; set; }
  26. public PDFToolType Tag { get; set; }
  27. public string Image { get; set; }
  28. public string TitleInfo { get; set; }
  29. public string Title { get; set; }
  30. }
  31. }