spc-kiosk-pb/Agent/KPS/frmKPS.cs

31 lines
686 B
C#
Raw Normal View History

2019-06-16 05:12:09 +00:00
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;
}
}
}
}