日期:2014-05-18 浏览次数:22726 次
private System.Windows.Forms.Panel LoadingPanel = new System.Windows.Forms.Panel();
public void PanelStart(System.Windows.Forms frm)
{
this.LoadingPanel.Location = new System.Drawing.Point(0, 0);
this.LoadingPanel.Dock = System.Windows.Forms.DockStyle.Fill;
this.LoadingPanel.Parent = frm;
this.LoadingPanel.BringToFront();
this.LoadingPanel.BackColor = System.Drawing.Color.FromArgb(200, 222, 235, 247);
}