CueSplitterMainForm.Designer.cs 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295
  1. 
  2. namespace CueSplitter
  3. {
  4. partial class CueSplitterMainForm
  5. {
  6. /// <summary>
  7. /// 必需的设计器变量。
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// 清理所有正在使用的资源。
  12. /// </summary>
  13. /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if (disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22. #region Windows 窗体设计器生成的代码
  23. /// <summary>
  24. /// 设计器支持所需的方法 - 不要修改
  25. /// 使用代码编辑器修改此方法的内容。
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.TracksListView = new System.Windows.Forms.ListView();
  30. this.TrackColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  31. this.TitleColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  32. this.PerformerColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  33. this.LengthColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  34. this.MediaFileLabel = new System.Windows.Forms.Label();
  35. this.MediaFileDropLabel = new System.Windows.Forms.Label();
  36. this.CoverPictureBox = new System.Windows.Forms.PictureBox();
  37. this.GoButton = new System.Windows.Forms.Button();
  38. this.UpperSplitContainer = new System.Windows.Forms.SplitContainer();
  39. this.OutputDirLabel = new System.Windows.Forms.Label();
  40. this.OutputDirDropLabel = new System.Windows.Forms.Label();
  41. this.MainSplitContainer = new System.Windows.Forms.SplitContainer();
  42. this.LowerSplitContainer = new System.Windows.Forms.SplitContainer();
  43. this.VgmDbButton = new System.Windows.Forms.Button();
  44. this.DiscPropertyGrid = new System.Windows.Forms.PropertyGrid();
  45. ((System.ComponentModel.ISupportInitialize)(this.CoverPictureBox)).BeginInit();
  46. ((System.ComponentModel.ISupportInitialize)(this.UpperSplitContainer)).BeginInit();
  47. this.UpperSplitContainer.Panel1.SuspendLayout();
  48. this.UpperSplitContainer.Panel2.SuspendLayout();
  49. this.UpperSplitContainer.SuspendLayout();
  50. ((System.ComponentModel.ISupportInitialize)(this.MainSplitContainer)).BeginInit();
  51. this.MainSplitContainer.Panel1.SuspendLayout();
  52. this.MainSplitContainer.Panel2.SuspendLayout();
  53. this.MainSplitContainer.SuspendLayout();
  54. ((System.ComponentModel.ISupportInitialize)(this.LowerSplitContainer)).BeginInit();
  55. this.LowerSplitContainer.Panel1.SuspendLayout();
  56. this.LowerSplitContainer.Panel2.SuspendLayout();
  57. this.LowerSplitContainer.SuspendLayout();
  58. this.SuspendLayout();
  59. //
  60. // TracksListView
  61. //
  62. this.TracksListView.AllowDrop = true;
  63. this.TracksListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
  64. this.TrackColumnHeader,
  65. this.TitleColumnHeader,
  66. this.PerformerColumnHeader,
  67. this.LengthColumnHeader});
  68. this.TracksListView.Dock = System.Windows.Forms.DockStyle.Fill;
  69. this.TracksListView.FullRowSelect = true;
  70. this.TracksListView.GridLines = true;
  71. this.TracksListView.HideSelection = false;
  72. this.TracksListView.Location = new System.Drawing.Point(0, 0);
  73. this.TracksListView.Name = "TracksListView";
  74. this.TracksListView.Size = new System.Drawing.Size(434, 320);
  75. this.TracksListView.TabIndex = 0;
  76. this.TracksListView.UseCompatibleStateImageBehavior = false;
  77. this.TracksListView.View = System.Windows.Forms.View.Details;
  78. this.TracksListView.DragDrop += new System.Windows.Forms.DragEventHandler(this.TracksListView_DragDrop);
  79. this.TracksListView.DragEnter += new System.Windows.Forms.DragEventHandler(this.FileDragLink);
  80. //
  81. // TrackColumnHeader
  82. //
  83. this.TrackColumnHeader.Text = "Track No.";
  84. this.TrackColumnHeader.Width = 82;
  85. //
  86. // TitleColumnHeader
  87. //
  88. this.TitleColumnHeader.Text = "Title";
  89. this.TitleColumnHeader.Width = 180;
  90. //
  91. // PerformerColumnHeader
  92. //
  93. this.PerformerColumnHeader.Text = "Performer";
  94. this.PerformerColumnHeader.Width = 90;
  95. //
  96. // LengthColumnHeader
  97. //
  98. this.LengthColumnHeader.Text = "Length";
  99. //
  100. // MediaFileLabel
  101. //
  102. this.MediaFileLabel.Location = new System.Drawing.Point(12, 12);
  103. this.MediaFileLabel.Name = "MediaFileLabel";
  104. this.MediaFileLabel.Size = new System.Drawing.Size(71, 21);
  105. this.MediaFileLabel.TabIndex = 1;
  106. this.MediaFileLabel.Text = "Media file:";
  107. this.MediaFileLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  108. //
  109. // MediaFileDropLabel
  110. //
  111. this.MediaFileDropLabel.AllowDrop = true;
  112. this.MediaFileDropLabel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  113. | System.Windows.Forms.AnchorStyles.Right)));
  114. this.MediaFileDropLabel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  115. this.MediaFileDropLabel.Location = new System.Drawing.Point(102, 12);
  116. this.MediaFileDropLabel.Name = "MediaFileDropLabel";
  117. this.MediaFileDropLabel.Size = new System.Drawing.Size(619, 21);
  118. this.MediaFileDropLabel.TabIndex = 1;
  119. this.MediaFileDropLabel.Text = "<drag in to here>";
  120. this.MediaFileDropLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  121. this.MediaFileDropLabel.DragDrop += new System.Windows.Forms.DragEventHandler(this.MediaFileDrop);
  122. this.MediaFileDropLabel.DragEnter += new System.Windows.Forms.DragEventHandler(this.FileDragLink);
  123. //
  124. // CoverPictureBox
  125. //
  126. this.CoverPictureBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  127. this.CoverPictureBox.Dock = System.Windows.Forms.DockStyle.Fill;
  128. this.CoverPictureBox.Location = new System.Drawing.Point(0, 0);
  129. this.CoverPictureBox.Name = "CoverPictureBox";
  130. this.CoverPictureBox.Size = new System.Drawing.Size(334, 320);
  131. this.CoverPictureBox.TabIndex = 2;
  132. this.CoverPictureBox.TabStop = false;
  133. //
  134. // GoButton
  135. //
  136. this.GoButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  137. this.GoButton.Location = new System.Drawing.Point(727, 12);
  138. this.GoButton.Name = "GoButton";
  139. this.GoButton.Size = new System.Drawing.Size(57, 53);
  140. this.GoButton.TabIndex = 4;
  141. this.GoButton.Text = "GO";
  142. this.GoButton.UseVisualStyleBackColor = true;
  143. //
  144. // UpperSplitContainer
  145. //
  146. this.UpperSplitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
  147. this.UpperSplitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
  148. this.UpperSplitContainer.Location = new System.Drawing.Point(0, 0);
  149. this.UpperSplitContainer.Name = "UpperSplitContainer";
  150. //
  151. // UpperSplitContainer.Panel1
  152. //
  153. this.UpperSplitContainer.Panel1.Controls.Add(this.TracksListView);
  154. //
  155. // UpperSplitContainer.Panel2
  156. //
  157. this.UpperSplitContainer.Panel2.Controls.Add(this.CoverPictureBox);
  158. this.UpperSplitContainer.Size = new System.Drawing.Size(772, 320);
  159. this.UpperSplitContainer.SplitterDistance = 434;
  160. this.UpperSplitContainer.TabIndex = 6;
  161. //
  162. // OutputDirLabel
  163. //
  164. this.OutputDirLabel.Location = new System.Drawing.Point(12, 45);
  165. this.OutputDirLabel.Name = "OutputDirLabel";
  166. this.OutputDirLabel.Size = new System.Drawing.Size(71, 20);
  167. this.OutputDirLabel.TabIndex = 1;
  168. this.OutputDirLabel.Text = "Output Dir:";
  169. this.OutputDirLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  170. //
  171. // OutputDirDropLabel
  172. //
  173. this.OutputDirDropLabel.AllowDrop = true;
  174. this.OutputDirDropLabel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  175. | System.Windows.Forms.AnchorStyles.Right)));
  176. this.OutputDirDropLabel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  177. this.OutputDirDropLabel.Location = new System.Drawing.Point(102, 44);
  178. this.OutputDirDropLabel.Name = "OutputDirDropLabel";
  179. this.OutputDirDropLabel.Size = new System.Drawing.Size(619, 21);
  180. this.OutputDirDropLabel.TabIndex = 1;
  181. this.OutputDirDropLabel.Text = "<drag in to here>";
  182. this.OutputDirDropLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  183. this.OutputDirDropLabel.DragDrop += new System.Windows.Forms.DragEventHandler(this.DirDropLabel);
  184. this.OutputDirDropLabel.DragEnter += new System.Windows.Forms.DragEventHandler(this.DirDragLink);
  185. //
  186. // MainSplitContainer
  187. //
  188. this.MainSplitContainer.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  189. | System.Windows.Forms.AnchorStyles.Left)
  190. | System.Windows.Forms.AnchorStyles.Right)));
  191. this.MainSplitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
  192. this.MainSplitContainer.Location = new System.Drawing.Point(14, 71);
  193. this.MainSplitContainer.Name = "MainSplitContainer";
  194. this.MainSplitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
  195. //
  196. // MainSplitContainer.Panel1
  197. //
  198. this.MainSplitContainer.Panel1.Controls.Add(this.UpperSplitContainer);
  199. //
  200. // MainSplitContainer.Panel2
  201. //
  202. this.MainSplitContainer.Panel2.Controls.Add(this.LowerSplitContainer);
  203. this.MainSplitContainer.Size = new System.Drawing.Size(772, 509);
  204. this.MainSplitContainer.SplitterDistance = 320;
  205. this.MainSplitContainer.TabIndex = 7;
  206. //
  207. // LowerSplitContainer
  208. //
  209. this.LowerSplitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
  210. this.LowerSplitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
  211. this.LowerSplitContainer.Location = new System.Drawing.Point(0, 0);
  212. this.LowerSplitContainer.Name = "LowerSplitContainer";
  213. //
  214. // LowerSplitContainer.Panel1
  215. //
  216. this.LowerSplitContainer.Panel1.Controls.Add(this.VgmDbButton);
  217. //
  218. // LowerSplitContainer.Panel2
  219. //
  220. this.LowerSplitContainer.Panel2.Controls.Add(this.DiscPropertyGrid);
  221. this.LowerSplitContainer.Size = new System.Drawing.Size(772, 185);
  222. this.LowerSplitContainer.SplitterDistance = 437;
  223. this.LowerSplitContainer.TabIndex = 0;
  224. //
  225. // VgmDbButton
  226. //
  227. this.VgmDbButton.Location = new System.Drawing.Point(3, 3);
  228. this.VgmDbButton.Name = "VgmDbButton";
  229. this.VgmDbButton.Size = new System.Drawing.Size(75, 23);
  230. this.VgmDbButton.TabIndex = 0;
  231. this.VgmDbButton.Text = "VGMDB...";
  232. this.VgmDbButton.UseVisualStyleBackColor = true;
  233. //
  234. // DiscPropertyGrid
  235. //
  236. this.DiscPropertyGrid.Dock = System.Windows.Forms.DockStyle.Fill;
  237. this.DiscPropertyGrid.Location = new System.Drawing.Point(0, 0);
  238. this.DiscPropertyGrid.Name = "DiscPropertyGrid";
  239. this.DiscPropertyGrid.Size = new System.Drawing.Size(331, 185);
  240. this.DiscPropertyGrid.TabIndex = 0;
  241. //
  242. // CueSplitterMainForm
  243. //
  244. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  245. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  246. this.ClientSize = new System.Drawing.Size(796, 592);
  247. this.Controls.Add(this.MainSplitContainer);
  248. this.Controls.Add(this.GoButton);
  249. this.Controls.Add(this.OutputDirDropLabel);
  250. this.Controls.Add(this.OutputDirLabel);
  251. this.Controls.Add(this.MediaFileDropLabel);
  252. this.Controls.Add(this.MediaFileLabel);
  253. this.Name = "CueSplitterMainForm";
  254. this.Text = "CUE Splitter";
  255. ((System.ComponentModel.ISupportInitialize)(this.CoverPictureBox)).EndInit();
  256. this.UpperSplitContainer.Panel1.ResumeLayout(false);
  257. this.UpperSplitContainer.Panel2.ResumeLayout(false);
  258. ((System.ComponentModel.ISupportInitialize)(this.UpperSplitContainer)).EndInit();
  259. this.UpperSplitContainer.ResumeLayout(false);
  260. this.MainSplitContainer.Panel1.ResumeLayout(false);
  261. this.MainSplitContainer.Panel2.ResumeLayout(false);
  262. ((System.ComponentModel.ISupportInitialize)(this.MainSplitContainer)).EndInit();
  263. this.MainSplitContainer.ResumeLayout(false);
  264. this.LowerSplitContainer.Panel1.ResumeLayout(false);
  265. this.LowerSplitContainer.Panel2.ResumeLayout(false);
  266. ((System.ComponentModel.ISupportInitialize)(this.LowerSplitContainer)).EndInit();
  267. this.LowerSplitContainer.ResumeLayout(false);
  268. this.ResumeLayout(false);
  269. }
  270. #endregion
  271. private System.Windows.Forms.ListView TracksListView;
  272. private System.Windows.Forms.ColumnHeader TrackColumnHeader;
  273. private System.Windows.Forms.ColumnHeader TitleColumnHeader;
  274. private System.Windows.Forms.ColumnHeader PerformerColumnHeader;
  275. private System.Windows.Forms.Label MediaFileLabel;
  276. private System.Windows.Forms.Label MediaFileDropLabel;
  277. private System.Windows.Forms.PictureBox CoverPictureBox;
  278. private System.Windows.Forms.Button GoButton;
  279. private System.Windows.Forms.SplitContainer UpperSplitContainer;
  280. private System.Windows.Forms.Label OutputDirLabel;
  281. private System.Windows.Forms.Label OutputDirDropLabel;
  282. private System.Windows.Forms.SplitContainer MainSplitContainer;
  283. private System.Windows.Forms.SplitContainer LowerSplitContainer;
  284. private System.Windows.Forms.PropertyGrid DiscPropertyGrid;
  285. private System.Windows.Forms.Button VgmDbButton;
  286. private System.Windows.Forms.ColumnHeader LengthColumnHeader;
  287. }
  288. }