CurveControlUsageSample.Designer.cs 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. //-----------------------------------------------------------------------------
  2. // CurveControlUsageSample.Designer.cs
  3. //
  4. // Microsoft XNA Community Game Platform
  5. // Copyright (C) Microsoft Corporation. All rights reserved.
  6. //-----------------------------------------------------------------------------
  7. namespace Xna.Samples
  8. {
  9. partial class CurveControlUsageSample
  10. {
  11. /// <summary>
  12. /// Required designer variable.
  13. /// </summary>
  14. private System.ComponentModel.IContainer components = null;
  15. /// <summary>
  16. /// Clean up any resources being used.
  17. /// </summary>
  18. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  19. protected override void Dispose(bool disposing)
  20. {
  21. if (disposing && (components != null))
  22. {
  23. components.Dispose();
  24. }
  25. base.Dispose(disposing);
  26. }
  27. #region Windows Form Designer generated code
  28. /// <summary>
  29. /// Required method for Designer support - do not modify
  30. /// the contents of this method with the code editor.
  31. /// </summary>
  32. private void InitializeComponent()
  33. {
  34. this.splitContainer1 = new System.Windows.Forms.SplitContainer();
  35. this.curveControl1 = new Xna.Tools.CurveControl();
  36. this.label1 = new System.Windows.Forms.Label();
  37. this.curveControl2 = new Xna.Tools.CurveControl();
  38. this.label2 = new System.Windows.Forms.Label();
  39. this.splitContainer1.Panel1.SuspendLayout();
  40. this.splitContainer1.Panel2.SuspendLayout();
  41. this.splitContainer1.SuspendLayout();
  42. this.SuspendLayout();
  43. //
  44. // splitContainer1
  45. //
  46. this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
  47. this.splitContainer1.Location = new System.Drawing.Point(0, 0);
  48. this.splitContainer1.Name = "splitContainer1";
  49. this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
  50. //
  51. // splitContainer1.Panel1
  52. //
  53. this.splitContainer1.Panel1.Controls.Add(this.curveControl1);
  54. this.splitContainer1.Panel1.Controls.Add(this.label1);
  55. //
  56. // splitContainer1.Panel2
  57. //
  58. this.splitContainer1.Panel2.Controls.Add(this.curveControl2);
  59. this.splitContainer1.Panel2.Controls.Add(this.label2);
  60. this.splitContainer1.Size = new System.Drawing.Size(491, 580);
  61. this.splitContainer1.SplitterDistance = 289;
  62. this.splitContainer1.TabIndex = 0;
  63. //
  64. // curveControl1
  65. //
  66. this.curveControl1.Dock = System.Windows.Forms.DockStyle.Fill;
  67. this.curveControl1.Location = new System.Drawing.Point(0, 33);
  68. this.curveControl1.Name = "curveControl1";
  69. this.curveControl1.Size = new System.Drawing.Size(491, 256);
  70. this.curveControl1.TabIndex = 1;
  71. //
  72. // label1
  73. //
  74. this.label1.AutoSize = true;
  75. this.label1.Dock = System.Windows.Forms.DockStyle.Top;
  76. this.label1.Location = new System.Drawing.Point(0, 0);
  77. this.label1.Name = "label1";
  78. this.label1.Padding = new System.Windows.Forms.Padding(10);
  79. this.label1.Size = new System.Drawing.Size(132, 33);
  80. this.label1.TabIndex = 0;
  81. this.label1.Text = "Editable Curve Control";
  82. //
  83. // curveControl2
  84. //
  85. this.curveControl2.Dock = System.Windows.Forms.DockStyle.Fill;
  86. this.curveControl2.Editable = false;
  87. this.curveControl2.Location = new System.Drawing.Point(0, 33);
  88. this.curveControl2.MenuVisible = false;
  89. this.curveControl2.Name = "curveControl2";
  90. this.curveControl2.Size = new System.Drawing.Size(491, 254);
  91. this.curveControl2.TabIndex = 1;
  92. //
  93. // label2
  94. //
  95. this.label2.AutoSize = true;
  96. this.label2.Dock = System.Windows.Forms.DockStyle.Top;
  97. this.label2.Location = new System.Drawing.Point(0, 0);
  98. this.label2.Name = "label2";
  99. this.label2.Padding = new System.Windows.Forms.Padding(10);
  100. this.label2.Size = new System.Drawing.Size(152, 33);
  101. this.label2.TabIndex = 0;
  102. this.label2.Text = "Non-Editable CurveControl";
  103. //
  104. // CurveControlUsageSample
  105. //
  106. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  107. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  108. this.ClientSize = new System.Drawing.Size(491, 580);
  109. this.Controls.Add(this.splitContainer1);
  110. this.Name = "CurveControlUsageSample";
  111. this.Text = "CurveControl Usage Sample";
  112. this.splitContainer1.Panel1.ResumeLayout(false);
  113. this.splitContainer1.Panel1.PerformLayout();
  114. this.splitContainer1.Panel2.ResumeLayout(false);
  115. this.splitContainer1.Panel2.PerformLayout();
  116. this.splitContainer1.ResumeLayout(false);
  117. this.ResumeLayout(false);
  118. }
  119. #endregion
  120. private System.Windows.Forms.SplitContainer splitContainer1;
  121. private Xna.Tools.CurveControl curveControl1;
  122. private System.Windows.Forms.Label label1;
  123. private System.Windows.Forms.Label label2;
  124. private Xna.Tools.CurveControl curveControl2;
  125. }
  126. }