RenderForm.Designer.cs 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. namespace KaraokeRenderPoc
  2. {
  3. partial class RenderForm
  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 Windows 窗体设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要修改
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.InputTextBox = new System.Windows.Forms.TextBox();
  29. this.ParseButton = new System.Windows.Forms.Button();
  30. this.PositionTrackBar = new System.Windows.Forms.TrackBar();
  31. this.RenderPictureBox = new System.Windows.Forms.PictureBox();
  32. ((System.ComponentModel.ISupportInitialize)(this.PositionTrackBar)).BeginInit();
  33. ((System.ComponentModel.ISupportInitialize)(this.RenderPictureBox)).BeginInit();
  34. this.SuspendLayout();
  35. //
  36. // InputTextBox
  37. //
  38. this.InputTextBox.Dock = System.Windows.Forms.DockStyle.Left;
  39. this.InputTextBox.Location = new System.Drawing.Point(0, 0);
  40. this.InputTextBox.Margin = new System.Windows.Forms.Padding(2);
  41. this.InputTextBox.Multiline = true;
  42. this.InputTextBox.Name = "InputTextBox";
  43. this.InputTextBox.Size = new System.Drawing.Size(119, 566);
  44. this.InputTextBox.TabIndex = 0;
  45. //
  46. // ParseButton
  47. //
  48. this.ParseButton.Dock = System.Windows.Forms.DockStyle.Top;
  49. this.ParseButton.Location = new System.Drawing.Point(119, 0);
  50. this.ParseButton.Margin = new System.Windows.Forms.Padding(2);
  51. this.ParseButton.Name = "ParseButton";
  52. this.ParseButton.Size = new System.Drawing.Size(585, 37);
  53. this.ParseButton.TabIndex = 1;
  54. this.ParseButton.Text = "Parse";
  55. this.ParseButton.UseVisualStyleBackColor = true;
  56. this.ParseButton.Click += new System.EventHandler(this.ParseButton_Click);
  57. //
  58. // PositionTrackBar
  59. //
  60. this.PositionTrackBar.Dock = System.Windows.Forms.DockStyle.Top;
  61. this.PositionTrackBar.Location = new System.Drawing.Point(119, 37);
  62. this.PositionTrackBar.Margin = new System.Windows.Forms.Padding(2);
  63. this.PositionTrackBar.Name = "PositionTrackBar";
  64. this.PositionTrackBar.Size = new System.Drawing.Size(585, 45);
  65. this.PositionTrackBar.TabIndex = 2;
  66. this.PositionTrackBar.TickFrequency = 100;
  67. this.PositionTrackBar.Scroll += new System.EventHandler(this.PositionTrackBar_Scroll);
  68. //
  69. // RenderPictureBox
  70. //
  71. this.RenderPictureBox.BackgroundImage = global::KaraokeRenderPoc.Properties.Resources.BackgroundImage;
  72. this.RenderPictureBox.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  73. this.RenderPictureBox.Dock = System.Windows.Forms.DockStyle.Fill;
  74. this.RenderPictureBox.Location = new System.Drawing.Point(119, 82);
  75. this.RenderPictureBox.Margin = new System.Windows.Forms.Padding(2);
  76. this.RenderPictureBox.Name = "RenderPictureBox";
  77. this.RenderPictureBox.Size = new System.Drawing.Size(585, 484);
  78. this.RenderPictureBox.TabIndex = 3;
  79. this.RenderPictureBox.TabStop = false;
  80. this.RenderPictureBox.Paint += new System.Windows.Forms.PaintEventHandler(this.RenderPictureBox_Paint);
  81. //
  82. // RenderForm
  83. //
  84. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  85. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  86. this.ClientSize = new System.Drawing.Size(704, 566);
  87. this.Controls.Add(this.RenderPictureBox);
  88. this.Controls.Add(this.PositionTrackBar);
  89. this.Controls.Add(this.ParseButton);
  90. this.Controls.Add(this.InputTextBox);
  91. this.Margin = new System.Windows.Forms.Padding(2);
  92. this.Name = "RenderForm";
  93. this.Text = "Karaoke Render POC";
  94. ((System.ComponentModel.ISupportInitialize)(this.PositionTrackBar)).EndInit();
  95. ((System.ComponentModel.ISupportInitialize)(this.RenderPictureBox)).EndInit();
  96. this.ResumeLayout(false);
  97. this.PerformLayout();
  98. }
  99. #endregion
  100. private System.Windows.Forms.TextBox InputTextBox;
  101. private System.Windows.Forms.Button ParseButton;
  102. private System.Windows.Forms.TrackBar PositionTrackBar;
  103. private System.Windows.Forms.PictureBox RenderPictureBox;
  104. }
  105. }