Click here to Skip to main content
15,895,011 members
Articles / Mobile Apps / Windows Mobile

Audio Book Player

Rate me:
Please Sign up or sign in to vote.
4.86/5 (36 votes)
11 Jun 2009CPOL6 min read 198.4K   3.5K   84  
Audio player designed specifically for listening to audio books
namespace abPlayer
{
    partial class frmLibrary
    {
        /// <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.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmLibrary));
            this.pumBooks = new System.Windows.Forms.ContextMenu();
            this.mnuNewBook = new System.Windows.Forms.MenuItem();
            this.mnuNewBookshelf = new System.Windows.Forms.MenuItem();
            this.mnuDel = new System.Windows.Forms.MenuItem();
            this.mnuDummy1 = new System.Windows.Forms.MenuItem();
            this.mnuMove = new System.Windows.Forms.MenuItem();
            this.mnuDummy2 = new System.Windows.Forms.MenuItem();
            this.mnuFind = new System.Windows.Forms.MenuItem();
            this.pumEntries = new System.Windows.Forms.ContextMenu();
            this.mnuFiles = new System.Windows.Forms.MenuItem();
            this.mnuDummy = new System.Windows.Forms.MenuItem();
            this.mnuDelE = new System.Windows.Forms.MenuItem();
            this.mnuDelAll = new System.Windows.Forms.MenuItem();
            this.pnl = new System.Windows.Forms.Panel();
            this.edt = new System.Windows.Forms.TextBox();
            this.lsv = new System.Windows.Forms.ListView();
            this.colName = new System.Windows.Forms.ColumnHeader();
            this.imlBooks = new System.Windows.Forms.ImageList();
            this.inp = new Microsoft.WindowsCE.Forms.InputPanel(this.components);
            this.pnlTop = new System.Windows.Forms.Panel();
            this.picMenu = new System.Windows.Forms.PictureBox();
            this.picSwitch = new System.Windows.Forms.PictureBox();
            this.picPlay = new System.Windows.Forms.PictureBox();
            this.picBack = new System.Windows.Forms.PictureBox();
            this.imlFiles = new System.Windows.Forms.ImageList();
            this.pnl.SuspendLayout();
            this.pnlTop.SuspendLayout();
            this.SuspendLayout();
            // 
            // pumBooks
            // 
            this.pumBooks.MenuItems.Add(this.mnuNewBook);
            this.pumBooks.MenuItems.Add(this.mnuNewBookshelf);
            this.pumBooks.MenuItems.Add(this.mnuDel);
            this.pumBooks.MenuItems.Add(this.mnuDummy1);
            this.pumBooks.MenuItems.Add(this.mnuMove);
            this.pumBooks.MenuItems.Add(this.mnuDummy2);
            this.pumBooks.MenuItems.Add(this.mnuFind);
            this.pumBooks.Popup += new System.EventHandler(this.pumBooks_Popup);
            // 
            // mnuNewBook
            // 
            this.mnuNewBook.Text = "New Book";
            this.mnuNewBook.Click += new System.EventHandler(this.mnuNewBook_Click);
            // 
            // mnuNewBookshelf
            // 
            this.mnuNewBookshelf.Text = "New Bookshelf";
            this.mnuNewBookshelf.Click += new System.EventHandler(this.mnuNewBookshelf_Click);
            // 
            // mnuDel
            // 
            this.mnuDel.Text = "Delete Entry";
            this.mnuDel.Click += new System.EventHandler(this.mnuDel_Click);
            // 
            // mnuDummy1
            // 
            this.mnuDummy1.Text = "-";
            // 
            // mnuMove
            // 
            this.mnuMove.Text = "Move Book To ...";
            // 
            // mnuDummy2
            // 
            this.mnuDummy2.Text = "-";
            // 
            // mnuFind
            // 
            this.mnuFind.Text = "Find Available Books";
            this.mnuFind.Click += new System.EventHandler(this.mnuFind_Click);
            // 
            // pumEntries
            // 
            this.pumEntries.MenuItems.Add(this.mnuFiles);
            this.pumEntries.MenuItems.Add(this.mnuDummy);
            this.pumEntries.MenuItems.Add(this.mnuDelE);
            this.pumEntries.MenuItems.Add(this.mnuDelAll);
            this.pumEntries.Popup += new System.EventHandler(this.pumEntries_Popup);
            // 
            // mnuFiles
            // 
            this.mnuFiles.Text = "Add Files";
            this.mnuFiles.Click += new System.EventHandler(this.mnuAddFiles_Click);
            // 
            // mnuDummy
            // 
            this.mnuDummy.Text = "-";
            // 
            // mnuDelE
            // 
            this.mnuDelE.Text = "Delete Entry";
            this.mnuDelE.Click += new System.EventHandler(this.mnuDelE_Click);
            // 
            // mnuDelAll
            // 
            this.mnuDelAll.Text = "Delete All";
            this.mnuDelAll.Click += new System.EventHandler(this.mnuDelAll_Click);
            // 
            // pnl
            // 
            this.pnl.BackColor = System.Drawing.Color.Black;
            this.pnl.Controls.Add(this.edt);
            this.pnl.Dock = System.Windows.Forms.DockStyle.Top;
            this.pnl.Location = new System.Drawing.Point(0, 0);
            this.pnl.Name = "pnl";
            this.pnl.Size = new System.Drawing.Size(638, 46);
            this.pnl.Paint += new System.Windows.Forms.PaintEventHandler(this.pnl_Paint);
            // 
            // edt
            // 
            this.edt.Location = new System.Drawing.Point(2, 23);
            this.edt.Name = "edt";
            this.edt.Size = new System.Drawing.Size(235, 21);
            this.edt.TabIndex = 10;
            this.edt.TabStop = false;
            this.edt.GotFocus += new System.EventHandler(this.edt_GotFocus);
            this.edt.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.edt_KeyPress);
            // 
            // lsv
            // 
            this.lsv.Activation = System.Windows.Forms.ItemActivation.TwoClick;
            this.lsv.Columns.Add(this.colName);
            this.lsv.Dock = System.Windows.Forms.DockStyle.Top;
            this.lsv.FullRowSelect = true;
            this.lsv.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
            this.lsv.Location = new System.Drawing.Point(0, 46);
            this.lsv.Name = "lsv";
            this.lsv.Size = new System.Drawing.Size(638, 223);
            this.lsv.SmallImageList = this.imlBooks;
            this.lsv.TabIndex = 1;
            this.lsv.View = System.Windows.Forms.View.Details;
            this.lsv.ItemActivate += new System.EventHandler(this.lsv_ItemActivate);
            this.lsv.SelectedIndexChanged += new System.EventHandler(this.lsv_SelectedIndexChanged);
            this.lsv.GotFocus += new System.EventHandler(this.NotEdt_GotFocus);
            this.lsv.KeyDown += new System.Windows.Forms.KeyEventHandler(this.lsv_KeyDown);
            // 
            // colName
            // 
            this.colName.Text = "Name";
            this.colName.Width = 238;
            // 
            // imlBooks
            // 
            this.imlBooks.ImageSize = new System.Drawing.Size(24, 24);
            this.imlBooks.Images.Clear();
            this.imlBooks.Images.Add(((System.Drawing.Image)(resources.GetObject("resource"))));
            this.imlBooks.Images.Add(((System.Drawing.Image)(resources.GetObject("resource1"))));
            this.imlBooks.Images.Add(((System.Drawing.Image)(resources.GetObject("resource2"))));
            // 
            // pnlTop
            // 
            this.pnlTop.BackColor = System.Drawing.Color.Black;
            this.pnlTop.Controls.Add(this.picMenu);
            this.pnlTop.Controls.Add(this.picSwitch);
            this.pnlTop.Controls.Add(this.picPlay);
            this.pnlTop.Controls.Add(this.picBack);
            this.pnlTop.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.pnlTop.Location = new System.Drawing.Point(0, 405);
            this.pnlTop.Name = "pnlTop";
            this.pnlTop.Size = new System.Drawing.Size(638, 50);
            // 
            // picMenu
            // 
            this.picMenu.Location = new System.Drawing.Point(7, 1);
            this.picMenu.Name = "picMenu";
            this.picMenu.Size = new System.Drawing.Size(48, 48);
            this.picMenu.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.picMenu.Tag = "menu";
            this.picMenu.Click += new System.EventHandler(this.picMenu_Click);
            // 
            // picSwitch
            // 
            this.picSwitch.Location = new System.Drawing.Point(65, 1);
            this.picSwitch.Name = "picSwitch";
            this.picSwitch.Size = new System.Drawing.Size(48, 48);
            this.picSwitch.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.picSwitch.Tag = "switch";
            this.picSwitch.Click += new System.EventHandler(this.picSwitch_Click);
            // 
            // picPlay
            // 
            this.picPlay.Location = new System.Drawing.Point(123, 1);
            this.picPlay.Name = "picPlay";
            this.picPlay.Size = new System.Drawing.Size(48, 48);
            this.picPlay.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.picPlay.Tag = "ok";
            this.picPlay.Click += new System.EventHandler(this.picPlay_Click);
            // 
            // picBack
            // 
            this.picBack.Location = new System.Drawing.Point(181, 1);
            this.picBack.Name = "picBack";
            this.picBack.Size = new System.Drawing.Size(48, 48);
            this.picBack.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.picBack.Tag = "cancel";
            this.picBack.Click += new System.EventHandler(this.picBack_Click);
            this.imlFiles.Images.Clear();
            this.imlFiles.Images.Add(((System.Drawing.Image)(resources.GetObject("resource3"))));
            // 
            // frmLibrary
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
            this.AutoScroll = true;
            this.ClientSize = new System.Drawing.Size(638, 455);
            this.ControlBox = false;
            this.Controls.Add(this.lsv);
            this.Controls.Add(this.pnl);
            this.Controls.Add(this.pnlTop);
            this.Location = new System.Drawing.Point(0, 0);
            this.Name = "frmLibrary";
            this.Text = "Library";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            this.pnl.ResumeLayout(false);
            this.pnlTop.ResumeLayout(false);
            this.ResumeLayout(false);

        }

        #endregion

        private System.Windows.Forms.Panel pnl;
        private System.Windows.Forms.ContextMenu pumBooks;
        private System.Windows.Forms.TextBox edt;
        private System.Windows.Forms.ContextMenu pumEntries;
        private System.Windows.Forms.MenuItem mnuDel;
        private System.Windows.Forms.MenuItem mnuDelE;
        private System.Windows.Forms.MenuItem mnuDelAll;
        private System.Windows.Forms.MenuItem mnuNewBook;
        private Microsoft.WindowsCE.Forms.InputPanel inp;
        private System.Windows.Forms.Panel pnlTop;
        private System.Windows.Forms.MenuItem mnuFiles;
        private System.Windows.Forms.MenuItem mnuDummy;
        private System.Windows.Forms.PictureBox picMenu;
        private System.Windows.Forms.PictureBox picSwitch;
        private System.Windows.Forms.PictureBox picPlay;
        private System.Windows.Forms.PictureBox picBack;
        private System.Windows.Forms.MenuItem mnuDummy1;
        private System.Windows.Forms.MenuItem mnuFind;
        private System.Windows.Forms.ListView lsv;
        private System.Windows.Forms.ColumnHeader colName;
        private System.Windows.Forms.ImageList imlBooks;
        private System.Windows.Forms.ImageList imlFiles;
        private System.Windows.Forms.MenuItem mnuNewBookshelf;
        private System.Windows.Forms.MenuItem mnuDummy2;
        private System.Windows.Forms.MenuItem mnuMove;
    }
}

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
Israel Israel
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions