Click here to Skip to main content
15,882,113 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 197.4K   3.5K   84  
Audio player designed specifically for listening to audio books
namespace abPlayer
{
    partial class frmFileSelector
    {
        /// <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()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmFileSelector));
            this.PNLbOTTOM = new System.Windows.Forms.Panel();
            this.picNone = new System.Windows.Forms.PictureBox();
            this.picAll = new System.Windows.Forms.PictureBox();
            this.picOK = new System.Windows.Forms.PictureBox();
            this.picCancel = new System.Windows.Forms.PictureBox();
            this.chkRec = new System.Windows.Forms.CheckBox();
            this.panel2 = new System.Windows.Forms.Panel();
            this.tvw = new System.Windows.Forms.TreeView();
            this.iml = new System.Windows.Forms.ImageList();
            this.spl = new System.Windows.Forms.Splitter();
            this.lvw = new System.Windows.Forms.ListView();
            this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
            this.PNLbOTTOM.SuspendLayout();
            this.panel2.SuspendLayout();
            this.SuspendLayout();
            // 
            // PNLbOTTOM
            // 
            this.PNLbOTTOM.BackColor = System.Drawing.Color.Black;
            this.PNLbOTTOM.Controls.Add(this.picNone);
            this.PNLbOTTOM.Controls.Add(this.picAll);
            this.PNLbOTTOM.Controls.Add(this.picOK);
            this.PNLbOTTOM.Controls.Add(this.picCancel);
            this.PNLbOTTOM.Controls.Add(this.chkRec);
            this.PNLbOTTOM.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.PNLbOTTOM.Location = new System.Drawing.Point(0, 407);
            this.PNLbOTTOM.Name = "PNLbOTTOM";
            this.PNLbOTTOM.Size = new System.Drawing.Size(638, 48);
            // 
            // picNone
            // 
            this.picNone.Image = ((System.Drawing.Image)(resources.GetObject("picNone.Image")));
            this.picNone.Location = new System.Drawing.Point(34, 21);
            this.picNone.Name = "picNone";
            this.picNone.Size = new System.Drawing.Size(24, 24);
            this.picNone.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.picNone.Click += new System.EventHandler(this.picNone_Click);
            // 
            // picAll
            // 
            this.picAll.Image = ((System.Drawing.Image)(resources.GetObject("picAll.Image")));
            this.picAll.Location = new System.Drawing.Point(4, 21);
            this.picAll.Name = "picAll";
            this.picAll.Size = new System.Drawing.Size(24, 24);
            this.picAll.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.picAll.Click += new System.EventHandler(this.picAll_Click);
            // 
            // picOK
            // 
            this.picOK.Location = new System.Drawing.Point(135, 1);
            this.picOK.Name = "picOK";
            this.picOK.Size = new System.Drawing.Size(48, 48);
            this.picOK.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.picOK.Tag = "ok";
            this.picOK.Click += new System.EventHandler(this.btnOK_Click);
            // 
            // picCancel
            // 
            this.picCancel.Location = new System.Drawing.Point(186, 1);
            this.picCancel.Name = "picCancel";
            this.picCancel.Size = new System.Drawing.Size(48, 48);
            this.picCancel.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.picCancel.Tag = "cancel";
            this.picCancel.Click += new System.EventHandler(this.btnCancel_Click);
            // 
            // chkRec
            // 
            this.chkRec.ForeColor = System.Drawing.Color.White;
            this.chkRec.Location = new System.Drawing.Point(20, 0);
            this.chkRec.Name = "chkRec";
            this.chkRec.Size = new System.Drawing.Size(113, 20);
            this.chkRec.TabIndex = 6;
            this.chkRec.Text = "Include Subdirs";
            this.chkRec.CheckStateChanged += new System.EventHandler(this.chkRec_CheckStateChanged);
            // 
            // panel2
            // 
            this.panel2.Controls.Add(this.tvw);
            this.panel2.Controls.Add(this.spl);
            this.panel2.Controls.Add(this.lvw);
            this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel2.Location = new System.Drawing.Point(0, 0);
            this.panel2.Name = "panel2";
            this.panel2.Size = new System.Drawing.Size(638, 407);
            // 
            // tvw
            // 
            this.tvw.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tvw.ImageIndex = 0;
            this.tvw.ImageList = this.iml;
            this.tvw.Indent = 35;
            this.tvw.Location = new System.Drawing.Point(0, 0);
            this.tvw.Name = "tvw";
            this.tvw.SelectedImageIndex = 0;
            this.tvw.Size = new System.Drawing.Size(638, 262);
            this.tvw.TabIndex = 4;
            this.tvw.TabStop = false;
            this.tvw.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.tvw_AfterSelect);
            this.iml.Images.Clear();
            this.iml.Images.Add(((System.Drawing.Image)(resources.GetObject("resource"))));
            this.iml.Images.Add(((System.Drawing.Image)(resources.GetObject("resource1"))));
            this.iml.Images.Add(((System.Drawing.Image)(resources.GetObject("resource2"))));
            // 
            // spl
            // 
            this.spl.BackColor = System.Drawing.Color.Black;
            this.spl.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.spl.Location = new System.Drawing.Point(0, 262);
            this.spl.Name = "spl";
            this.spl.Size = new System.Drawing.Size(638, 18);
            this.spl.Paint += new System.Windows.Forms.PaintEventHandler(this.spl_Paint);
            // 
            // lvw
            // 
            this.lvw.CheckBoxes = true;
            this.lvw.Columns.Add(this.columnHeader1);
            this.lvw.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.lvw.FullRowSelect = true;
            this.lvw.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
            this.lvw.Location = new System.Drawing.Point(0, 280);
            this.lvw.Name = "lvw";
            this.lvw.Size = new System.Drawing.Size(638, 127);
            this.lvw.SmallImageList = this.iml;
            this.lvw.TabIndex = 1;
            this.lvw.View = System.Windows.Forms.View.Details;
            // 
            // columnHeader1
            // 
            this.columnHeader1.Text = "Name";
            this.columnHeader1.Width = 220;
            // 
            // frmFileSelector
            // 
            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.panel2);
            this.Controls.Add(this.PNLbOTTOM);
            this.MinimizeBox = false;
            this.Name = "frmFileSelector";
            this.Text = "File Selector";
            this.PNLbOTTOM.ResumeLayout(false);
            this.panel2.ResumeLayout(false);
            this.ResumeLayout(false);

        }

        #endregion

        private System.Windows.Forms.Panel PNLbOTTOM;
        private System.Windows.Forms.Panel panel2;
        private System.Windows.Forms.TreeView tvw;
        private System.Windows.Forms.Splitter spl;
        private System.Windows.Forms.ListView lvw;
        private System.Windows.Forms.ImageList iml;
        private System.Windows.Forms.CheckBox chkRec;
        private System.Windows.Forms.ColumnHeader columnHeader1;
        private System.Windows.Forms.PictureBox picOK;
        private System.Windows.Forms.PictureBox picCancel;
        private System.Windows.Forms.PictureBox picNone;
        private System.Windows.Forms.PictureBox picAll;
    }
}

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