mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
- Substitute occurrences of "2.1.8" with "2.1.9" using: git grep -I -l -e '2\.1\.8' | xargs \ sed -b -i -e 's/2\.1\.8/2\.1\.9/g'
90 lines
3.1 KiB
C#
90 lines
3.1 KiB
C#
namespace CUEPlayer
|
|
{
|
|
partial class frmCUEPlayer
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Windows Form Designer generated code
|
|
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
|
|
this.windowsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.icecastToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.menuStrip1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// menuStrip1
|
|
//
|
|
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.windowsToolStripMenuItem});
|
|
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
|
|
this.menuStrip1.Name = "menuStrip1";
|
|
this.menuStrip1.Size = new System.Drawing.Size(1200, 24);
|
|
this.menuStrip1.TabIndex = 1;
|
|
this.menuStrip1.Text = "menuStrip1";
|
|
//
|
|
// windowsToolStripMenuItem
|
|
//
|
|
this.windowsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.icecastToolStripMenuItem});
|
|
this.windowsToolStripMenuItem.Name = "windowsToolStripMenuItem";
|
|
this.windowsToolStripMenuItem.Size = new System.Drawing.Size(68, 20);
|
|
this.windowsToolStripMenuItem.Text = "Windows";
|
|
//
|
|
// icecastToolStripMenuItem
|
|
//
|
|
this.icecastToolStripMenuItem.Name = "icecastToolStripMenuItem";
|
|
this.icecastToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
|
|
this.icecastToolStripMenuItem.Text = "Icecast";
|
|
this.icecastToolStripMenuItem.Click += new System.EventHandler(this.icecastToolStripMenuItem_Click);
|
|
//
|
|
// frmCUEPlayer
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(1200, 474);
|
|
this.Controls.Add(this.menuStrip1);
|
|
this.IsMdiContainer = true;
|
|
this.MainMenuStrip = this.menuStrip1;
|
|
this.Name = "frmCUEPlayer";
|
|
this.Text = "CUEPlayer 2.1.9";
|
|
this.Load += new System.EventHandler(this.frmCUEPlayer_Load);
|
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmCUEPlayer_FormClosing);
|
|
this.menuStrip1.ResumeLayout(false);
|
|
this.menuStrip1.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.MenuStrip menuStrip1;
|
|
private System.Windows.Forms.ToolStripMenuItem windowsToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem icecastToolStripMenuItem;
|
|
|
|
}
|
|
}
|
|
|