| 1234567891011121314151617181920212223242526272829303132333435363738 |
-
- using System.ComponentModel;
- using System.Windows.Forms;
- using Microsoft.VisualBasic.PowerPacks;
- namespace Dongke.WinForm.Controls.InvoiceLayout
- {
- [ToolboxItem(false)]
- internal partial class PaperArea : UserControl
- {
- #region 构造函数
- /// <summary>
- /// 构造函数
- /// </summary>
- public PaperArea()
- {
- InitializeComponent();
- SetStyle(ControlStyles.OptimizedDoubleBuffer
- | ControlStyles.ResizeRedraw
- | ControlStyles.AllPaintingInWmPaint
- , true);
- }
- #endregion 构造函数
- #region 属性
- /// <summary>
- /// Item设置,打印的范围。
- /// </summary>
- public ShapeContainer ShapeContainer
- {
- get
- {
- return this.shapeContainer1;
- }
- }
- #endregion 属性
- }
- }
|