float xvalues;
float yvalues;
/************************************************************************/
/* 初始化主窗体 */
/************************************************************************/
private void MainForm_Load(object sender, EventArgs e)
{
LayoutUI();
}
/************************************************************************/
/* 加载界面 */
/************************************************************************/
private void LayoutUI()
{
xvalues = this.ClientRectangle.Width;//记录窗体初始大小
yvalues = this.ClientRectangle.Height;
SetTag(this);
}