| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
-
- using System;
- namespace Dongke.WinForm.Controls.InvoiceLayout.DrawBarcode.QRCode
- {
- /// <summary>
- /// 二维码绘制参数
- /// </summary>
- [Serializable]
- public class QRCodeDrawingOptions : DrawingOptions
- {
- /// <summary>
- /// 二维码绘制参数
- /// </summary>
- public QRCodeDrawingOptions()
- {
- }
- /*
- /// <summary>
- /// Logo
- /// </summary>
- public Image Logo
- {
- get;
- set;
- }
- /// <summary>
- /// Logo尺寸
- /// </summary>
- public Size LogoSize
- {
- get;
- set;
- }
- /// <summary>
- /// Logo背景色
- /// </summary>
- public Color? LogoBackColor
- {
- get;
- set;
- }
- */
- }
- }
|