namespace IReaper.CommonGui{
partial class FileViewToolStrip
{
/// <summary>
///
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
///
/// </summary>
/// <param name="disposing"> true false</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region
/// <summary>
/// -
///
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FileViewToolStrip));
this.toolStripBStart = new System.Windows.Forms.ToolStripButton();
this.toolStripBPause = new System.Windows.Forms.ToolStripButton();
this.toolStripBStartAll = new System.Windows.Forms.ToolStripButton();
this.toolStripBPauseAll = new System.Windows.Forms.ToolStripButton();
this.toolStripBRemove = new System.Windows.Forms.ToolStripButton();
this.toolStripBRemoveAll = new System.Windows.Forms.ToolStripButton();
this.SuspendLayout();
//
// toolStripBStart
//
resources.ApplyResources(this.toolStripBStart, "toolStripBStart");
this.toolStripBStart.Name = "toolStripBStart";
this.toolStripBStart.Click += new System.EventHandler(this.StartDownload);
//
// toolStripBPause
//
resources.ApplyResources(this.toolStripBPause, "toolStripBPause");
this.toolStripBPause.Name = "toolStripBPause";
this.toolStripBPause.Click += new System.EventHandler(this.PauseDownload);
//
// toolStripBStartAll
//
resources.ApplyResources(this.toolStripBStartAll, "toolStripBStartAll");
this.toolStripBStartAll.Image = global::IReaper.Properties.Resources.RunAll;
this.toolStripBStartAll.Name = "toolStripBStartAll";
this.toolStripBStartAll.Tag = "All";
this.toolStripBStartAll.Click += new System.EventHandler(this.StartDownload);
//
// toolStripBPauseAll
//
resources.ApplyResources(this.toolStripBPauseAll, "toolStripBPauseAll");
this.toolStripBPauseAll.Image = global::IReaper.Properties.Resources.StopAll;
this.toolStripBPauseAll.Name = "toolStripBPauseAll";
this.toolStripBPauseAll.Tag = "All";
this.toolStripBPauseAll.Click += new System.EventHandler(this.PauseDownload);
//
// toolStripBRemove
//
resources.ApplyResources(this.toolStripBRemove, "toolStripBRemove");
this.toolStripBRemove.Name = "toolStripBRemove";
this.toolStripBRemove.Tag = "";
this.toolStripBRemove.Click += new System.EventHandler(this.RemoveDownload);
//
// toolStripBRemoveAll
//
resources.ApplyResources(this.toolStripBRemoveAll, "toolStripBRemoveAll");
this.toolStripBRemoveAll.Image = global::IReaper.Properties.Resources.ClearAll;
this.toolStripBRemoveAll.Name = "toolStripBRemoveAll";
this.toolStripBRemoveAll.Tag = "All";
this.toolStripBRemoveAll.Click += new System.EventHandler(this.RemoveDownload);
//
// FileViewToolStrip
//
this.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripBStart,
this.toolStripBPause,
this.toolStripBRemove,
this.toolStripBStartAll,
this.toolStripBPauseAll,
this.toolStripBRemoveAll});
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.ToolStripButton toolStripBStart;
private System.Windows.Forms.ToolStripButton toolStripBPause;
private System.Windows.Forms.ToolStripButton toolStripBStartAll;
private System.Windows.Forms.ToolStripButton toolStripBPauseAll;
private System.Windows.Forms.ToolStripButton toolStripBRemove;
private System.Windows.Forms.ToolStripButton toolStripBRemoveAll;
}
}
|