|
|
@@ -28,13 +28,16 @@
|
|
|
/// </summary>
|
|
|
private void InitializeComponent()
|
|
|
{
|
|
|
+ this.components = new System.ComponentModel.Container();
|
|
|
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
|
|
|
this.ZoomComBox_label = new System.Windows.Forms.ToolStripLabel();
|
|
|
this.ZoomComBox = new System.Windows.Forms.ToolStripComboBox();
|
|
|
+ this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
|
|
|
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
|
|
|
this.ScrollSpan_label = new System.Windows.Forms.ToolStripLabel();
|
|
|
this.ScrollSpan = new System.Windows.Forms.ToolStripTextBox();
|
|
|
- this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
|
|
|
+ this.toolStripLabel2 = new System.Windows.Forms.ToolStripLabel();
|
|
|
+ this.ScrollTimer = new System.Windows.Forms.Timer(this.components);
|
|
|
this.toolStrip1.SuspendLayout();
|
|
|
this.SuspendLayout();
|
|
|
//
|
|
|
@@ -47,7 +50,8 @@
|
|
|
this.toolStripLabel1,
|
|
|
this.toolStripSeparator1,
|
|
|
this.ScrollSpan_label,
|
|
|
- this.ScrollSpan});
|
|
|
+ this.ScrollSpan,
|
|
|
+ this.toolStripLabel2});
|
|
|
this.toolStrip1.Location = new System.Drawing.Point(0, 0);
|
|
|
this.toolStrip1.Name = "toolStrip1";
|
|
|
this.toolStrip1.Size = new System.Drawing.Size(598, 30);
|
|
|
@@ -64,9 +68,16 @@
|
|
|
//
|
|
|
this.ZoomComBox.Name = "ZoomComBox";
|
|
|
this.ZoomComBox.Size = new System.Drawing.Size(75, 30);
|
|
|
+ this.ZoomComBox.Text = "100";
|
|
|
this.ZoomComBox.SelectedIndexChanged += new System.EventHandler(this.ZoomComBox_SelectedIndexChanged);
|
|
|
this.ZoomComBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ZoomComBox_KeyDown);
|
|
|
//
|
|
|
+ // toolStripLabel1
|
|
|
+ //
|
|
|
+ this.toolStripLabel1.Name = "toolStripLabel1";
|
|
|
+ this.toolStripLabel1.Size = new System.Drawing.Size(19, 27);
|
|
|
+ this.toolStripLabel1.Text = "%";
|
|
|
+ //
|
|
|
// toolStripSeparator1
|
|
|
//
|
|
|
this.toolStripSeparator1.Name = "toolStripSeparator1";
|
|
|
@@ -82,12 +93,17 @@
|
|
|
//
|
|
|
this.ScrollSpan.Name = "ScrollSpan";
|
|
|
this.ScrollSpan.Size = new System.Drawing.Size(30, 30);
|
|
|
+ this.ScrollSpan.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ScrollSpan_KeyDown);
|
|
|
//
|
|
|
- // toolStripLabel1
|
|
|
+ // toolStripLabel2
|
|
|
//
|
|
|
- this.toolStripLabel1.Name = "toolStripLabel1";
|
|
|
- this.toolStripLabel1.Size = new System.Drawing.Size(19, 27);
|
|
|
- this.toolStripLabel1.Text = "%";
|
|
|
+ this.toolStripLabel2.Name = "toolStripLabel2";
|
|
|
+ this.toolStripLabel2.Size = new System.Drawing.Size(20, 27);
|
|
|
+ this.toolStripLabel2.Text = "秒";
|
|
|
+ //
|
|
|
+ // ScrollTimer
|
|
|
+ //
|
|
|
+ this.ScrollTimer.Tick += new System.EventHandler(this.ScrollTimer_Tick);
|
|
|
//
|
|
|
// PDFOperater
|
|
|
//
|
|
|
@@ -97,6 +113,7 @@
|
|
|
this.Controls.Add(this.toolStrip1);
|
|
|
this.Name = "PDFOperater";
|
|
|
this.Size = new System.Drawing.Size(598, 30);
|
|
|
+ this.Load += new System.EventHandler(this.PDFOperater_Load);
|
|
|
this.toolStrip1.ResumeLayout(false);
|
|
|
this.toolStrip1.PerformLayout();
|
|
|
this.ResumeLayout(false);
|
|
|
@@ -113,5 +130,7 @@
|
|
|
private System.Windows.Forms.ToolStripLabel ScrollSpan_label;
|
|
|
private System.Windows.Forms.ToolStripTextBox ScrollSpan;
|
|
|
private System.Windows.Forms.ToolStripLabel toolStripLabel1;
|
|
|
+ private System.Windows.Forms.Timer ScrollTimer;
|
|
|
+ private System.Windows.Forms.ToolStripLabel toolStripLabel2;
|
|
|
}
|
|
|
}
|