Click here to Skip to main content
15,861,125 members
Articles / Desktop Programming / Windows Forms

BSEtunes

Rate me:
Please Sign up or sign in to vote.
4.67/5 (11 votes)
24 Apr 2010CPOL4 min read 64.2K   4.3K   58  
BSEtunes is a MySQL based, full manageable, networkable single or multiuser jukebox application
namespace BSE.Platten.Tunes
{
    partial class ClipBoard
    {
        /// <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(ClipBoard));
            this.m_ctxPlayList = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.mnuItemPlay = new System.Windows.Forms.ToolStripMenuItem();
            this.mnuItemSeparator = new System.Windows.Forms.ToolStripSeparator();
            this.mnuItemToAlbum = new System.Windows.Forms.ToolStripMenuItem();
            this.m_playerManager = new BSE.Platten.Audio.CPlayerManager();
            this.m_lblInformation = new BSE.Platten.Common.UnchangeableLabel();
            this.m_lstvClipBoard = new BSE.Platten.Tunes.ListViewEx();
            this.m_clmnTitle = new BSE.Windows.Forms.ColumnHeader();
            this.m_clmnDuration = new BSE.Windows.Forms.ColumnHeader();
            this.m_clmnFile = new BSE.Windows.Forms.ColumnHeader();
            this.m_trackInfo = new BSE.Platten.Tunes.TrackInfo();
            this.m_ctxPlayList.SuspendLayout();
            this.SuspendLayout();
            // 
            // m_ctxPlayList
            // 
            this.m_ctxPlayList.AccessibleDescription = null;
            this.m_ctxPlayList.AccessibleName = null;
            resources.ApplyResources(this.m_ctxPlayList, "m_ctxPlayList");
            this.m_ctxPlayList.BackgroundImage = null;
            this.m_ctxPlayList.Font = null;
            this.m_ctxPlayList.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.mnuItemPlay,
            this.mnuItemSeparator,
            this.mnuItemToAlbum});
            this.m_ctxPlayList.Name = "m_ctxPlayList";
            // 
            // mnuItemPlay
            // 
            this.mnuItemPlay.AccessibleDescription = null;
            this.mnuItemPlay.AccessibleName = null;
            resources.ApplyResources(this.mnuItemPlay, "mnuItemPlay");
            this.mnuItemPlay.BackgroundImage = null;
            this.mnuItemPlay.Image = global::BSE.Platten.Tunes.Properties.Resources.wiedergabe16;
            this.mnuItemPlay.Name = "mnuItemPlay";
            this.mnuItemPlay.ShortcutKeyDisplayString = null;
            this.mnuItemPlay.Click += new System.EventHandler(this.PlaySelectedTracksClick);
            // 
            // mnuItemSeparator
            // 
            this.mnuItemSeparator.AccessibleDescription = null;
            this.mnuItemSeparator.AccessibleName = null;
            resources.ApplyResources(this.mnuItemSeparator, "mnuItemSeparator");
            this.mnuItemSeparator.Name = "mnuItemSeparator";
            // 
            // mnuItemToAlbum
            // 
            this.mnuItemToAlbum.AccessibleDescription = null;
            this.mnuItemToAlbum.AccessibleName = null;
            resources.ApplyResources(this.mnuItemToAlbum, "mnuItemToAlbum");
            this.mnuItemToAlbum.BackgroundImage = null;
            this.mnuItemToAlbum.Image = global::BSE.Platten.Tunes.Properties.Resources.Album16;
            this.mnuItemToAlbum.Name = "mnuItemToAlbum";
            this.mnuItemToAlbum.ShortcutKeyDisplayString = null;
            this.mnuItemToAlbum.Click += new System.EventHandler(this.SelectAlbumClick);
            // 
            // m_playerManager
            // 
            this.m_playerManager.HasPlayerStarted = false;
            this.m_playerManager.TrackCollection = null;
            // 
            // m_lblInformation
            // 
            this.m_lblInformation.AccessibleDescription = null;
            this.m_lblInformation.AccessibleName = null;
            resources.ApplyResources(this.m_lblInformation, "m_lblInformation");
            this.m_lblInformation.BackColor = System.Drawing.SystemColors.Window;
            this.m_lblInformation.Name = "m_lblInformation";
            // 
            // m_lstvClipBoard
            // 
            this.m_lstvClipBoard.AccessibleDescription = null;
            this.m_lstvClipBoard.AccessibleName = null;
            resources.ApplyResources(this.m_lstvClipBoard, "m_lstvClipBoard");
            this.m_lstvClipBoard.AllowColumnReorder = true;
            this.m_lstvClipBoard.AllowDrag = true;
            this.m_lstvClipBoard.AllowDrop = true;
            this.m_lstvClipBoard.AllowSelectAllItems = true;
            this.m_lstvClipBoard.AlternatingBackColor = System.Drawing.SystemColors.Window;
            this.m_lstvClipBoard.BackgroundImage = null;
            this.m_lstvClipBoard.Columns.AddRange(new BSE.Windows.Forms.ColumnHeader[] {
            this.m_clmnTitle,
            this.m_clmnDuration,
            this.m_clmnFile});
            this.m_lstvClipBoard.DragDropEffects = System.Windows.Forms.DragDropEffects.Copy;
            this.m_lstvClipBoard.DragDropOnlyAsEvent = true;
            this.m_lstvClipBoard.FitLargestItem = false;
            this.m_lstvClipBoard.Font = null;
            this.m_lstvClipBoard.FullRowSelect = true;
            this.m_lstvClipBoard.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
            this.m_lstvClipBoard.Name = "m_lstvClipBoard";
            this.m_lstvClipBoard.PlayerManager = null;
            this.m_lstvClipBoard.UseCompatibleStateImageBehavior = false;
            this.m_lstvClipBoard.View = System.Windows.Forms.View.Details;
            this.m_lstvClipBoard.DragDrop += new System.Windows.Forms.DragEventHandler(this.ClipBoardDragDrop);
            this.m_lstvClipBoard.MouseUp += new System.Windows.Forms.MouseEventHandler(this.ClipBoardMouseUp);
            this.m_lstvClipBoard.Resize += new System.EventHandler(this.ClipBoardResize);
            this.m_lstvClipBoard.KeyUp += new System.Windows.Forms.KeyEventHandler(this.ClipBoardKeyUp);
            this.m_lstvClipBoard.DragLeave += new System.EventHandler(this.ClipBoardDragLeave);
            this.m_lstvClipBoard.DragEnter += new System.Windows.Forms.DragEventHandler(this.ClipBoardDragEnter);
            // 
            // m_clmnTitle
            // 
            this.m_clmnTitle.ListViewComparer = BSE.Windows.Forms.ListViewComparer.Strings;
            resources.ApplyResources(this.m_clmnTitle, "m_clmnTitle");
            // 
            // m_clmnDuration
            // 
            this.m_clmnDuration.ListViewComparer = BSE.Windows.Forms.ListViewComparer.Dates;
            resources.ApplyResources(this.m_clmnDuration, "m_clmnDuration");
            // 
            // m_clmnFile
            // 
            this.m_clmnFile.EnableFileDropping = true;
            this.m_clmnFile.ListViewComparer = BSE.Windows.Forms.ListViewComparer.Strings;
            resources.ApplyResources(this.m_clmnFile, "m_clmnFile");
            // 
            // m_trackInfo
            // 
            this.m_trackInfo.AccessibleDescription = null;
            this.m_trackInfo.AccessibleName = null;
            resources.ApplyResources(this.m_trackInfo, "m_trackInfo");
            this.m_trackInfo.BackgroundImage = null;
            this.m_trackInfo.Environment = null;
            this.m_trackInfo.Font = null;
            this.m_trackInfo.Name = "m_trackInfo";
            this.m_trackInfo.AlbumSelecting += new System.EventHandler<BSE.Platten.Tunes.AlbumSelectEventArgs>(this.TrackInfoAlbumSelecting);
            // 
            // ClipBoard
            // 
            this.AccessibleDescription = null;
            this.AccessibleName = null;
            resources.ApplyResources(this, "$this");
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackgroundImage = null;
            this.Controls.Add(this.m_lblInformation);
            this.Controls.Add(this.m_lstvClipBoard);
            this.Controls.Add(this.m_trackInfo);
            this.Font = null;
            this.Name = "ClipBoard";
            this.Load += new System.EventHandler(this.CClipBoard_Load);
            this.m_ctxPlayList.ResumeLayout(false);
            this.ResumeLayout(false);

        }

        #endregion

        private BSE.Platten.Tunes.ListViewEx m_lstvClipBoard;
        private BSE.Windows.Forms.ColumnHeader m_clmnTitle;
        private BSE.Windows.Forms.ColumnHeader m_clmnDuration;
        private BSE.Platten.Audio.CPlayerManager m_playerManager;
        private BSE.Windows.Forms.ColumnHeader m_clmnFile;
        private System.Windows.Forms.ContextMenuStrip m_ctxPlayList;
        private System.Windows.Forms.ToolStripMenuItem mnuItemPlay;
        private System.Windows.Forms.ToolStripSeparator mnuItemSeparator;
        private System.Windows.Forms.ToolStripMenuItem mnuItemToAlbum;
        private TrackInfo m_trackInfo;
        private BSE.Platten.Common.UnchangeableLabel m_lblInformation;
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Switzerland Switzerland
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions