123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace PDFSettings
- {
-
-
-
- public class AllPDFToolsList : List<ToolItem>
- {
- }
-
-
-
- public class QuickPDFToolsList : List<ToolItem>
- {
- }
- public class ToolItem : INotifyPropertyChanged
- {
- public event PropertyChangedEventHandler PropertyChanged = delegate { };
- private bool _isShowConciseContent = false;
-
-
-
- public bool IsShowConciseContent
- {
- get { return _isShowConciseContent; }
- set
- {
- _isShowConciseContent = value;
- PropertyChanged(this, new PropertyChangedEventArgs("IsShowConciseContent"));
- }
- }
- #region 重要属性
-
-
-
- public bool IsNew { get; set; }
- #region 工具类型
-
-
-
- public int ToolType { get; set; }
-
-
-
- public string strToolType { get; set; }
- #endregion
- #region 功能
-
-
-
- public int FnType { get; set; }
-
-
-
- public string strFnType { get; set; }
- #endregion
- #region 显示内容
-
-
-
- public string Image { get; set; }
-
-
-
- public string TitleInfo { get; set; }
-
-
-
- public string Title { get; set; }
- #endregion
- #endregion
- }
- }
|