PresetFontList.cs 985 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Windows;
  7. using System.Windows.Media;
  8. namespace PDFSettings
  9. {
  10. public class PresetFontList : List<PresetFontItem>
  11. {
  12. }
  13. public class PresetFontItem
  14. {
  15. public string mTag { get; set; }
  16. public string mTagContent { get; set; }
  17. public int mFontSize { get; set; }
  18. public FontFamily mFontFamily { get; set; }
  19. public FontStyle mFontStyle { get; set; }
  20. public FontWeight mFontWeight { get; set; }
  21. }
  22. public class PreinstallFontList : List<PreinstallItem>
  23. {
  24. }
  25. public class PreinstallItem
  26. {
  27. public string mTag { get; set; }
  28. public string mTagContent { get; set; }
  29. public int mFontSize { get; set; }
  30. public string mFontFamily { get; set; }
  31. public string mFontStyle { get; set; }
  32. public string mFontWeight { get; set; }
  33. }
  34. }