88 lines
3.6 KiB
C#
88 lines
3.6 KiB
C#
namespace MusicMetaTagger.UI
|
|
{
|
|
partial class LibrarySelector
|
|
{
|
|
/// <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 Component 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.components = new System.ComponentModel.Container();
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(LibrarySelector));
|
|
this.pictureBox = new System.Windows.Forms.PictureBox();
|
|
this.imageList = new System.Windows.Forms.ImageList(this.components);
|
|
this.libraryTypeComboBox = new System.Windows.Forms.ComboBox();
|
|
((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// pictureBox
|
|
//
|
|
this.pictureBox.Location = new System.Drawing.Point(3, 3);
|
|
this.pictureBox.Name = "pictureBox";
|
|
this.pictureBox.Size = new System.Drawing.Size(32, 32);
|
|
this.pictureBox.TabIndex = 11;
|
|
this.pictureBox.TabStop = false;
|
|
this.pictureBox.Click += new System.EventHandler(this.pictureBox_Click);
|
|
//
|
|
// imageList
|
|
//
|
|
this.imageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList.ImageStream")));
|
|
this.imageList.TransparentColor = System.Drawing.Color.Transparent;
|
|
this.imageList.Images.SetKeyName(0, "iTunes.ico");
|
|
this.imageList.Images.SetKeyName(1, "Qs Eclipse WMP11.ico");
|
|
//
|
|
// libraryTypeComboBox
|
|
//
|
|
this.libraryTypeComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.libraryTypeComboBox.Location = new System.Drawing.Point(42, 8);
|
|
this.libraryTypeComboBox.Name = "libraryTypeComboBox";
|
|
this.libraryTypeComboBox.Size = new System.Drawing.Size(67, 21);
|
|
this.libraryTypeComboBox.TabIndex = 12;
|
|
this.libraryTypeComboBox.SelectionChangeCommitted += new System.EventHandler(this.libraryTypeComboBox_SelectionChangeCommitted);
|
|
this.libraryTypeComboBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.libraryTypeComboBox_KeyDown);
|
|
//
|
|
// LibrarySelector
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.Controls.Add(this.libraryTypeComboBox);
|
|
this.Controls.Add(this.pictureBox);
|
|
this.MinimumSize = new System.Drawing.Size(120, 38);
|
|
this.Name = "LibrarySelector";
|
|
this.Size = new System.Drawing.Size(122, 40);
|
|
this.Load += new System.EventHandler(this.LibrarySelector_Load);
|
|
this.Click += new System.EventHandler(this.LibrarySelector_Click);
|
|
((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.PictureBox pictureBox;
|
|
private System.Windows.Forms.ImageList imageList;
|
|
private System.Windows.Forms.ComboBox libraryTypeComboBox;
|
|
}
|
|
} |