LrcFetcherPage.Designer.cs 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. namespace LrcTool
  2. {
  3. partial class LrcFetcherPage
  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.label1 = new System.Windows.Forms.Label();
  29. this.SongUrlTextBox = new System.Windows.Forms.TextBox();
  30. this.PasteLinkLabel = new System.Windows.Forms.LinkLabel();
  31. this.label2 = new System.Windows.Forms.Label();
  32. this.SongIdTextBox = new System.Windows.Forms.TextBox();
  33. this.label3 = new System.Windows.Forms.Label();
  34. this.LrcApiTextBox = new System.Windows.Forms.TextBox();
  35. this.panel1 = new System.Windows.Forms.Panel();
  36. this.CopyButton = new System.Windows.Forms.Button();
  37. this.FireButton = new System.Windows.Forms.Button();
  38. this.splitContainer1 = new System.Windows.Forms.SplitContainer();
  39. this.LeftRichTextBox = new System.Windows.Forms.RichTextBox();
  40. this.RightRichTextBox = new System.Windows.Forms.RichTextBox();
  41. this.panel1.SuspendLayout();
  42. this.splitContainer1.Panel1.SuspendLayout();
  43. this.splitContainer1.Panel2.SuspendLayout();
  44. this.splitContainer1.SuspendLayout();
  45. this.SuspendLayout();
  46. //
  47. // label1
  48. //
  49. this.label1.AutoSize = true;
  50. this.label1.Location = new System.Drawing.Point(6, 6);
  51. this.label1.Name = "label1";
  52. this.label1.Size = new System.Drawing.Size(47, 12);
  53. this.label1.TabIndex = 0;
  54. this.label1.Text = "NCM Url";
  55. //
  56. // SongUrlTextBox
  57. //
  58. this.SongUrlTextBox.Location = new System.Drawing.Point(59, 3);
  59. this.SongUrlTextBox.Name = "SongUrlTextBox";
  60. this.SongUrlTextBox.Size = new System.Drawing.Size(357, 21);
  61. this.SongUrlTextBox.TabIndex = 1;
  62. this.SongUrlTextBox.Text = "http://music.163.com/song?id=730669";
  63. //
  64. // PasteLinkLabel
  65. //
  66. this.PasteLinkLabel.AutoSize = true;
  67. this.PasteLinkLabel.Location = new System.Drawing.Point(422, 6);
  68. this.PasteLinkLabel.Name = "PasteLinkLabel";
  69. this.PasteLinkLabel.Size = new System.Drawing.Size(47, 12);
  70. this.PasteLinkLabel.TabIndex = 2;
  71. this.PasteLinkLabel.TabStop = true;
  72. this.PasteLinkLabel.Text = "←Paste";
  73. this.PasteLinkLabel.Click += new System.EventHandler(this.PasteLinkLabel_Click);
  74. //
  75. // label2
  76. //
  77. this.label2.AutoSize = true;
  78. this.label2.Location = new System.Drawing.Point(473, 6);
  79. this.label2.Name = "label2";
  80. this.label2.Size = new System.Drawing.Size(71, 12);
  81. this.label2.TabIndex = 0;
  82. this.label2.Text = "NCM Song ID";
  83. //
  84. // SongIdTextBox
  85. //
  86. this.SongIdTextBox.Location = new System.Drawing.Point(550, 3);
  87. this.SongIdTextBox.Name = "SongIdTextBox";
  88. this.SongIdTextBox.Size = new System.Drawing.Size(82, 21);
  89. this.SongIdTextBox.TabIndex = 1;
  90. this.SongIdTextBox.Text = "730669";
  91. //
  92. // label3
  93. //
  94. this.label3.AutoSize = true;
  95. this.label3.Location = new System.Drawing.Point(5, 33);
  96. this.label3.Name = "label3";
  97. this.label3.Size = new System.Drawing.Size(71, 12);
  98. this.label3.TabIndex = 0;
  99. this.label3.Text = "NCM LRC API";
  100. //
  101. // LrcApiTextBox
  102. //
  103. this.LrcApiTextBox.Location = new System.Drawing.Point(82, 30);
  104. this.LrcApiTextBox.Name = "LrcApiTextBox";
  105. this.LrcApiTextBox.Size = new System.Drawing.Size(306, 21);
  106. this.LrcApiTextBox.TabIndex = 1;
  107. this.LrcApiTextBox.Text = "http://music.163.com/api/song/media?id=730669";
  108. //
  109. // panel1
  110. //
  111. this.panel1.Controls.Add(this.CopyButton);
  112. this.panel1.Controls.Add(this.FireButton);
  113. this.panel1.Controls.Add(this.SongUrlTextBox);
  114. this.panel1.Controls.Add(this.label1);
  115. this.panel1.Controls.Add(this.PasteLinkLabel);
  116. this.panel1.Controls.Add(this.label2);
  117. this.panel1.Controls.Add(this.LrcApiTextBox);
  118. this.panel1.Controls.Add(this.SongIdTextBox);
  119. this.panel1.Controls.Add(this.label3);
  120. this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
  121. this.panel1.Location = new System.Drawing.Point(0, 0);
  122. this.panel1.Name = "panel1";
  123. this.panel1.Size = new System.Drawing.Size(982, 61);
  124. this.panel1.TabIndex = 4;
  125. //
  126. // CopyButton
  127. //
  128. this.CopyButton.Location = new System.Drawing.Point(475, 29);
  129. this.CopyButton.Name = "CopyButton";
  130. this.CopyButton.Size = new System.Drawing.Size(75, 21);
  131. this.CopyButton.TabIndex = 3;
  132. this.CopyButton.Text = "Copy↘";
  133. this.CopyButton.UseVisualStyleBackColor = true;
  134. this.CopyButton.Click += new System.EventHandler(this.CopyButton_Click);
  135. //
  136. // FireButton
  137. //
  138. this.FireButton.Location = new System.Drawing.Point(394, 29);
  139. this.FireButton.Name = "FireButton";
  140. this.FireButton.Size = new System.Drawing.Size(75, 21);
  141. this.FireButton.TabIndex = 3;
  142. this.FireButton.Text = "Fire!";
  143. this.FireButton.UseVisualStyleBackColor = true;
  144. this.FireButton.Click += new System.EventHandler(this.FireButton_Click);
  145. //
  146. // splitContainer1
  147. //
  148. this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
  149. this.splitContainer1.Location = new System.Drawing.Point(0, 61);
  150. this.splitContainer1.Name = "splitContainer1";
  151. //
  152. // splitContainer1.Panel1
  153. //
  154. this.splitContainer1.Panel1.Controls.Add(this.LeftRichTextBox);
  155. //
  156. // splitContainer1.Panel2
  157. //
  158. this.splitContainer1.Panel2.Controls.Add(this.RightRichTextBox);
  159. this.splitContainer1.Size = new System.Drawing.Size(982, 600);
  160. this.splitContainer1.SplitterDistance = 465;
  161. this.splitContainer1.TabIndex = 5;
  162. //
  163. // LeftRichTextBox
  164. //
  165. this.LeftRichTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
  166. this.LeftRichTextBox.Location = new System.Drawing.Point(0, 0);
  167. this.LeftRichTextBox.Name = "LeftRichTextBox";
  168. this.LeftRichTextBox.ReadOnly = true;
  169. this.LeftRichTextBox.Size = new System.Drawing.Size(465, 600);
  170. this.LeftRichTextBox.TabIndex = 4;
  171. this.LeftRichTextBox.Text = "";
  172. //
  173. // RightRichTextBox
  174. //
  175. this.RightRichTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
  176. this.RightRichTextBox.Location = new System.Drawing.Point(0, 0);
  177. this.RightRichTextBox.Name = "RightRichTextBox";
  178. this.RightRichTextBox.ReadOnly = true;
  179. this.RightRichTextBox.Size = new System.Drawing.Size(513, 600);
  180. this.RightRichTextBox.TabIndex = 4;
  181. this.RightRichTextBox.Text = "";
  182. //
  183. // LrcFetcherPage
  184. //
  185. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  186. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  187. this.Controls.Add(this.splitContainer1);
  188. this.Controls.Add(this.panel1);
  189. this.Name = "LrcFetcherPage";
  190. this.Size = new System.Drawing.Size(982, 661);
  191. this.panel1.ResumeLayout(false);
  192. this.panel1.PerformLayout();
  193. this.splitContainer1.Panel1.ResumeLayout(false);
  194. this.splitContainer1.Panel2.ResumeLayout(false);
  195. this.splitContainer1.ResumeLayout(false);
  196. this.ResumeLayout(false);
  197. }
  198. #endregion
  199. private System.Windows.Forms.Label label1;
  200. private System.Windows.Forms.TextBox SongUrlTextBox;
  201. private System.Windows.Forms.LinkLabel PasteLinkLabel;
  202. private System.Windows.Forms.Label label2;
  203. private System.Windows.Forms.TextBox SongIdTextBox;
  204. private System.Windows.Forms.Label label3;
  205. private System.Windows.Forms.TextBox LrcApiTextBox;
  206. private System.Windows.Forms.Panel panel1;
  207. private System.Windows.Forms.Button FireButton;
  208. private System.Windows.Forms.SplitContainer splitContainer1;
  209. private System.Windows.Forms.RichTextBox LeftRichTextBox;
  210. private System.Windows.Forms.RichTextBox RightRichTextBox;
  211. private System.Windows.Forms.Button CopyButton;
  212. }
  213. }