Win32ScenePanel.Designer.cs 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. namespace CommonFroms.SceneGraph2D
  2. {
  3. partial class Win32ScenePanel
  4. {
  5. /// <summary>
  6. /// 必需的设计器变量。
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 清理所有正在使用的资源。
  11. /// </summary>
  12. /// <param name="disposing">如果应释放托管资源,为 true;否则为 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 组件设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要修改
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. this.canvas = new System.Windows.Forms.PictureBox();
  30. this.timer = new System.Windows.Forms.Timer(this.components);
  31. ((System.ComponentModel.ISupportInitialize)(this.canvas)).BeginInit();
  32. this.SuspendLayout();
  33. //
  34. // pictureBox1
  35. //
  36. this.canvas.Dock = System.Windows.Forms.DockStyle.Fill;
  37. this.canvas.Location = new System.Drawing.Point(0, 0);
  38. this.canvas.Name = "pictureBox1";
  39. this.canvas.Size = new System.Drawing.Size(871, 645);
  40. this.canvas.TabIndex = 0;
  41. this.canvas.TabStop = false;
  42. this.canvas.MouseDown += new System.Windows.Forms.MouseEventHandler(this.canvas_MouseDown);
  43. this.canvas.MouseMove += new System.Windows.Forms.MouseEventHandler(this.canvas_MouseMove);
  44. this.canvas.MouseUp += new System.Windows.Forms.MouseEventHandler(this.canvas_MouseUp);
  45. //
  46. // timer1
  47. //
  48. this.timer.Interval = 33;
  49. //
  50. // Win32ScenePanel
  51. //
  52. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  53. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  54. this.BackColor = System.Drawing.SystemColors.ControlDarkDark;
  55. this.Controls.Add(this.canvas);
  56. this.Name = "Win32ScenePanel";
  57. this.Size = new System.Drawing.Size(871, 645);
  58. ((System.ComponentModel.ISupportInitialize)(this.canvas)).EndInit();
  59. this.ResumeLayout(false);
  60. }
  61. #endregion
  62. protected System.Windows.Forms.PictureBox canvas;
  63. protected System.Windows.Forms.Timer timer;
  64. }
  65. }