31 lines
686 B
C#
31 lines
686 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.ComponentModel;
|
|||
|
using System.Data;
|
|||
|
using System.Drawing;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Windows.Forms;
|
|||
|
|
|||
|
namespace Cosmos.KPS
|
|||
|
{
|
|||
|
public partial class frmKPS : Form
|
|||
|
{
|
|||
|
public frmKPS()
|
|||
|
{
|
|||
|
InitializeComponent();
|
|||
|
|
|||
|
base.SetStyle(ControlStyles.OptimizedDoubleBuffer | ControlStyles.AllPaintingInWmPaint | ControlStyles.ResizeRedraw, true);
|
|||
|
//this.UpdateStyles();
|
|||
|
}
|
|||
|
|
|||
|
public AxOposPOSPrinter_CCO.AxOPOSPOSPrinter OposPrinter
|
|||
|
{
|
|||
|
get
|
|||
|
{
|
|||
|
return this.oposPrinter;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|