22 lines
496 B
C#
22 lines
496 B
C#
using System;
|
|
using System.Windows.Forms;
|
|
|
|
namespace Cosmos.Service
|
|
{
|
|
public partial class frmPrtData : Form
|
|
{
|
|
public frmPrtData()
|
|
{
|
|
InitializeComponent();
|
|
|
|
base.SetStyle(ControlStyles.OptimizedDoubleBuffer | ControlStyles.AllPaintingInWmPaint | ControlStyles.ResizeRedraw, true);
|
|
//this.UpdateStyles();
|
|
}
|
|
|
|
private void btnClose_Click(object sender, EventArgs e)
|
|
{
|
|
this.Close();
|
|
}
|
|
}
|
|
}
|