Form1.Designer.cs 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. namespace TurnThePage
  2. {
  3. partial class Form1
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. this.panel1 = new System.Windows.Forms.Panel();
  30. this.label2 = new System.Windows.Forms.Label();
  31. this.label1 = new System.Windows.Forms.Label();
  32. this.trackBar1 = new System.Windows.Forms.TrackBar();
  33. this.PrevButton = new System.Windows.Forms.Button();
  34. this.ForwardButton = new System.Windows.Forms.Button();
  35. this.pageControl = new PictureBook.TurnThePageControl();
  36. this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
  37. this.panel1.SuspendLayout();
  38. ((System.ComponentModel.ISupportInitialize)(this.trackBar1)).BeginInit();
  39. this.SuspendLayout();
  40. //
  41. // panel1
  42. //
  43. this.panel1.Controls.Add(this.label2);
  44. this.panel1.Controls.Add(this.label1);
  45. this.panel1.Controls.Add(this.trackBar1);
  46. this.panel1.Controls.Add(this.PrevButton);
  47. this.panel1.Controls.Add(this.ForwardButton);
  48. this.panel1.Location = new System.Drawing.Point(0, 308);
  49. this.panel1.Name = "panel1";
  50. this.panel1.Size = new System.Drawing.Size(460, 70);
  51. this.panel1.TabIndex = 1;
  52. //
  53. // label2
  54. //
  55. this.label2.AutoSize = true;
  56. this.label2.Location = new System.Drawing.Point(315, 49);
  57. this.label2.Name = "label2";
  58. this.label2.Size = new System.Drawing.Size(17, 12);
  59. this.label2.TabIndex = 4;
  60. this.label2.Text = "慢";
  61. this.toolTip1.SetToolTip(this.label2, "翻页效果慢");
  62. //
  63. // label1
  64. //
  65. this.label1.AutoSize = true;
  66. this.label1.Location = new System.Drawing.Point(119, 49);
  67. this.label1.Name = "label1";
  68. this.label1.Size = new System.Drawing.Size(17, 12);
  69. this.label1.TabIndex = 3;
  70. this.label1.Text = "快";
  71. //
  72. // trackBar1
  73. //
  74. this.trackBar1.BackColor = System.Drawing.Color.White;
  75. this.trackBar1.Location = new System.Drawing.Point(119, 13);
  76. this.trackBar1.Maximum = 20;
  77. this.trackBar1.Name = "trackBar1";
  78. this.trackBar1.Size = new System.Drawing.Size(223, 45);
  79. this.trackBar1.TabIndex = 2;
  80. this.toolTip1.SetToolTip(this.trackBar1, "翻页的速度");
  81. this.trackBar1.Scroll += new System.EventHandler(this.trackBar1_Scroll);
  82. //
  83. // PrevButton
  84. //
  85. this.PrevButton.BackColor = System.Drawing.SystemColors.Control;
  86. this.PrevButton.Location = new System.Drawing.Point(3, 18);
  87. this.PrevButton.Name = "PrevButton";
  88. this.PrevButton.Size = new System.Drawing.Size(75, 21);
  89. this.PrevButton.TabIndex = 1;
  90. this.PrevButton.Text = "<<";
  91. this.toolTip1.SetToolTip(this.PrevButton, "Go Back (Turn Left Page)");
  92. this.PrevButton.UseVisualStyleBackColor = false;
  93. this.PrevButton.Click += new System.EventHandler(this.PrevButton_Click);
  94. //
  95. // ForwardButton
  96. //
  97. this.ForwardButton.BackColor = System.Drawing.SystemColors.Control;
  98. this.ForwardButton.Location = new System.Drawing.Point(382, 18);
  99. this.ForwardButton.Name = "ForwardButton";
  100. this.ForwardButton.Size = new System.Drawing.Size(75, 21);
  101. this.ForwardButton.TabIndex = 0;
  102. this.ForwardButton.Text = ">>";
  103. this.toolTip1.SetToolTip(this.ForwardButton, "Go Forward (Turn Right Page)");
  104. this.ForwardButton.UseVisualStyleBackColor = false;
  105. this.ForwardButton.Click += new System.EventHandler(this.ForwardButton_Click);
  106. //
  107. // pageControl
  108. //
  109. this.pageControl.BackColor = System.Drawing.Color.White;
  110. this.pageControl.HeightAdjustment = 60;
  111. this.pageControl.Location = new System.Drawing.Point(0, 1);
  112. this.pageControl.MinimumSize = new System.Drawing.Size(460, 277);
  113. this.pageControl.MoveXBy = 10;
  114. this.pageControl.Name = "pageControl";
  115. this.pageControl.Size = new System.Drawing.Size(460, 315);
  116. this.pageControl.TabIndex = 2;
  117. this.pageControl.TickSpeed = 15;
  118. //
  119. // Form1
  120. //
  121. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  122. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  123. this.BackColor = System.Drawing.Color.White;
  124. this.ClientSize = new System.Drawing.Size(460, 378);
  125. this.Controls.Add(this.pageControl);
  126. this.Controls.Add(this.panel1);
  127. this.Name = "Form1";
  128. this.Text = "翻页动画显示窗口";
  129. this.panel1.ResumeLayout(false);
  130. this.panel1.PerformLayout();
  131. ((System.ComponentModel.ISupportInitialize)(this.trackBar1)).EndInit();
  132. this.ResumeLayout(false);
  133. }
  134. #endregion
  135. private System.Windows.Forms.Panel panel1;
  136. private System.Windows.Forms.Button PrevButton;
  137. private System.Windows.Forms.Button ForwardButton;
  138. private System.Windows.Forms.TrackBar trackBar1;
  139. private PictureBook.TurnThePageControl pageControl;
  140. private System.Windows.Forms.Label label1;
  141. private System.Windows.Forms.Label label2;
  142. private System.Windows.Forms.ToolTip toolTip1;
  143. }
  144. }