53 lines
1.6 KiB
C#
53 lines
1.6 KiB
C#
namespace LSFileClient
|
|
{
|
|
using LSServerService;
|
|
using System;
|
|
using System.ComponentModel;
|
|
using System.Drawing;
|
|
using System.Runtime.InteropServices;
|
|
using System.Text;
|
|
using System.Threading;
|
|
using System.Windows.Forms;
|
|
|
|
partial class frmSmartClient
|
|
{
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (this.components != null))
|
|
{
|
|
this.components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
|
|
private void InitializeComponent()
|
|
{
|
|
this.timer1 = new System.Windows.Forms.Timer();
|
|
this.SuspendLayout();
|
|
//
|
|
// timer1
|
|
//
|
|
this.timer1.Enabled = true;
|
|
this.timer1.Interval = 1;
|
|
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
|
|
//
|
|
// frmSmartClient
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(799, 504);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
|
|
this.Name = "frmSmartClient";
|
|
this.Text = "frmSmartClient";
|
|
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.frmSmartClient_FormClosed);
|
|
this.Load += new System.EventHandler(this.frmSmartClient_Load);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
|
|
private IContainer components;
|
|
private System.Windows.Forms.Timer timer1;
|
|
}
|
|
} |