基线 SVN r240
SVN-Revision: r240
This commit is contained in:
@@ -0,0 +1,56 @@
|
||||
namespace LSFileClient
|
||||
{
|
||||
using LSServerService;
|
||||
using System;
|
||||
using System.ComponentModel;
|
||||
using System.Drawing;
|
||||
using System.IO;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Text;
|
||||
using System.Windows.Forms;
|
||||
|
||||
partial class frmSingleDownload
|
||||
{
|
||||
protected override void Dispose(bool disposing)
|
||||
{
|
||||
if (disposing && (this.components != null))
|
||||
{
|
||||
this.components.Dispose();
|
||||
}
|
||||
base.Dispose(disposing);
|
||||
}
|
||||
|
||||
|
||||
private void InitializeComponent()
|
||||
{
|
||||
this.proTranslate = new ProgressBar();
|
||||
base.SuspendLayout();
|
||||
this.proTranslate.BackColor = Color.Silver;
|
||||
this.proTranslate.Dock = DockStyle.Bottom;
|
||||
this.proTranslate.ForeColor = SystemColors.ControlText;
|
||||
this.proTranslate.Location = new Point(0, -1);
|
||||
this.proTranslate.Name = "proTranslate";
|
||||
this.proTranslate.Size = new Size(360, 23);
|
||||
this.proTranslate.TabIndex = 4;
|
||||
base.AutoScaleDimensions = new SizeF(6f, 12f);
|
||||
base.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
base.ClientSize = new Size(360, 22);
|
||||
base.Controls.Add(this.proTranslate);
|
||||
base.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
|
||||
base.Name = "frmSingleDownload";
|
||||
base.StartPosition = FormStartPosition.CenterScreen;
|
||||
this.Text = "frmSingleDownload";
|
||||
base.Load += new EventHandler(this.frmSingleDownload_Load);
|
||||
base.FormClosed += new FormClosedEventHandler(this.frmSingleDownload_FormClosed);
|
||||
base.FormClosing += new FormClosingEventHandler(this.frmSingleDownload_FormClosing);
|
||||
base.ResumeLayout(false);
|
||||
}
|
||||
|
||||
|
||||
private IContainer components;
|
||||
private bool canClosed;
|
||||
private FileStream fs;
|
||||
private ProgressBar proTranslate;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user