QRCodeDrawingOptions.cs 857 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. 
  2. using System;
  3. namespace Dongke.WinForm.Controls.InvoiceLayout.DrawBarcode.QRCode
  4. {
  5. /// <summary>
  6. /// 二维码绘制参数
  7. /// </summary>
  8. [Serializable]
  9. public class QRCodeDrawingOptions : DrawingOptions
  10. {
  11. /// <summary>
  12. /// 二维码绘制参数
  13. /// </summary>
  14. public QRCodeDrawingOptions()
  15. {
  16. }
  17. /*
  18. /// <summary>
  19. /// Logo
  20. /// </summary>
  21. public Image Logo
  22. {
  23. get;
  24. set;
  25. }
  26. /// <summary>
  27. /// Logo尺寸
  28. /// </summary>
  29. public Size LogoSize
  30. {
  31. get;
  32. set;
  33. }
  34. /// <summary>
  35. /// Logo背景色
  36. /// </summary>
  37. public Color? LogoBackColor
  38. {
  39. get;
  40. set;
  41. }
  42. */
  43. }
  44. }