UserControl1.Designer.cs 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. namespace PictureBook
  2. {
  3. partial class TurnThePageControl
  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 Component 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.timer1 = new System.Windows.Forms.Timer(this.components);
  30. this.SuspendLayout();
  31. //
  32. // timer1
  33. //
  34. this.timer1.Interval = 200;
  35. this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
  36. //
  37. // UserControl1
  38. //
  39. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  40. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  41. this.DoubleBuffered = true;
  42. this.MinimumSize = new System.Drawing.Size(460, 300);
  43. this.Name = "UserControl1";
  44. this.Size = new System.Drawing.Size(460, 300);
  45. this.ResumeLayout(false);
  46. }
  47. #endregion
  48. private System.Windows.Forms.Timer timer1;
  49. }
  50. }