Click here to Skip to main content
15,896,278 members
Articles / Programming Languages / C#

Dual Pane File Manager

Rate me:
Please Sign up or sign in to vote.
4.64/5 (28 votes)
21 Dec 2010CPOL8 min read 140.9K   2.3K   119  
A dual pane file manager for Windows XP.
namespace JFileManager
{
	partial class cFiler
	{
		/// <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.staStatus = new System.Windows.Forms.StatusStrip();
			this.tslblDrive = new System.Windows.Forms.ToolStripStatusLabel();
			this.tslblObjects = new System.Windows.Forms.ToolStripStatusLabel();
			this.tslblSelected = new System.Windows.Forms.ToolStripStatusLabel();
			this.splitContainer1 = new System.Windows.Forms.SplitContainer();
			this.label1 = new System.Windows.Forms.Label();
			this.gbxMain = new System.Windows.Forms.GroupBox();
			this.panToolStrip = new System.Windows.Forms.Panel();
			this.staStatus.SuspendLayout();
			this.splitContainer1.Panel2.SuspendLayout();
			this.splitContainer1.SuspendLayout();
			this.gbxMain.SuspendLayout();
			this.SuspendLayout();
			// 
			// staStatus
			// 
			this.staStatus.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.tslblDrive,
            this.tslblObjects,
            this.tslblSelected});
			this.staStatus.Location = new System.Drawing.Point(3, 445);
			this.staStatus.Name = "staStatus";
			this.staStatus.Size = new System.Drawing.Size(437, 22);
			this.staStatus.SizingGrip = false;
			this.staStatus.TabIndex = 1;
			// 
			// tslblDrive
			// 
			this.tslblDrive.AutoSize = false;
			this.tslblDrive.BorderSides = ((System.Windows.Forms.ToolStripStatusLabelBorderSides)((((System.Windows.Forms.ToolStripStatusLabelBorderSides.Left | System.Windows.Forms.ToolStripStatusLabelBorderSides.Top)
									| System.Windows.Forms.ToolStripStatusLabelBorderSides.Right)
									| System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom)));
			this.tslblDrive.BorderStyle = System.Windows.Forms.Border3DStyle.SunkenInner;
			this.tslblDrive.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
			this.tslblDrive.Name = "tslblDrive";
			this.tslblDrive.Size = new System.Drawing.Size(140, 17);
			this.tslblDrive.Spring = true;
			this.tslblDrive.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
			// 
			// tslblObjects
			// 
			this.tslblObjects.AutoSize = false;
			this.tslblObjects.BorderSides = ((System.Windows.Forms.ToolStripStatusLabelBorderSides)((((System.Windows.Forms.ToolStripStatusLabelBorderSides.Left | System.Windows.Forms.ToolStripStatusLabelBorderSides.Top)
									| System.Windows.Forms.ToolStripStatusLabelBorderSides.Right)
									| System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom)));
			this.tslblObjects.BorderStyle = System.Windows.Forms.Border3DStyle.SunkenInner;
			this.tslblObjects.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
			this.tslblObjects.Name = "tslblObjects";
			this.tslblObjects.Size = new System.Drawing.Size(140, 17);
			this.tslblObjects.Spring = true;
			this.tslblObjects.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
			// 
			// tslblSelected
			// 
			this.tslblSelected.AutoSize = false;
			this.tslblSelected.BorderSides = ((System.Windows.Forms.ToolStripStatusLabelBorderSides)((((System.Windows.Forms.ToolStripStatusLabelBorderSides.Left | System.Windows.Forms.ToolStripStatusLabelBorderSides.Top)
									| System.Windows.Forms.ToolStripStatusLabelBorderSides.Right)
									| System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom)));
			this.tslblSelected.BorderStyle = System.Windows.Forms.Border3DStyle.SunkenInner;
			this.tslblSelected.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
			this.tslblSelected.Name = "tslblSelected";
			this.tslblSelected.Size = new System.Drawing.Size(140, 17);
			this.tslblSelected.Spring = true;
			this.tslblSelected.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
			// 
			// splitContainer1
			// 
			this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
			this.splitContainer1.Location = new System.Drawing.Point(3, 45);
			this.splitContainer1.Name = "splitContainer1";
			this.splitContainer1.Panel1MinSize = 0;
			// 
			// splitContainer1.Panel2
			// 
			this.splitContainer1.Panel2.Controls.Add(this.label1);
			this.splitContainer1.Size = new System.Drawing.Size(437, 400);
			this.splitContainer1.SplitterDistance = 165;
			this.splitContainer1.TabIndex = 2;
			this.splitContainer1.SplitterMoving += new System.Windows.Forms.SplitterCancelEventHandler(this.splitContainer1_SplitterMoving);
			this.splitContainer1.SplitterMoved += new System.Windows.Forms.SplitterEventHandler(this.splitContainer1_SplitterMoved);
			// 
			// label1
			// 
			this.label1.AutoSize = true;
			this.label1.Location = new System.Drawing.Point(16, 48);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(79, 13);
			this.label1.TabIndex = 4;
			this.label1.Text = "Access Denied";
			// 
			// gbxMain
			// 
			this.gbxMain.Controls.Add(this.splitContainer1);
			this.gbxMain.Controls.Add(this.panToolStrip);
			this.gbxMain.Controls.Add(this.staStatus);
			this.gbxMain.Dock = System.Windows.Forms.DockStyle.Fill;
			this.gbxMain.Location = new System.Drawing.Point(0, 0);
			this.gbxMain.Name = "gbxMain";
			this.gbxMain.Size = new System.Drawing.Size(443, 470);
			this.gbxMain.TabIndex = 5;
			this.gbxMain.TabStop = false;
			this.gbxMain.Text = "groupBox1";
			// 
			// panToolStrip
			// 
			this.panToolStrip.Dock = System.Windows.Forms.DockStyle.Top;
			this.panToolStrip.Location = new System.Drawing.Point(3, 16);
			this.panToolStrip.Name = "panToolStrip";
			this.panToolStrip.Size = new System.Drawing.Size(437, 29);
			this.panToolStrip.TabIndex = 3;
			// 
			// cFiler
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.Controls.Add(this.gbxMain);
			this.Name = "cFiler";
			this.Size = new System.Drawing.Size(443, 470);
			this.staStatus.ResumeLayout(false);
			this.staStatus.PerformLayout();
			this.splitContainer1.Panel2.ResumeLayout(false);
			this.splitContainer1.Panel2.PerformLayout();
			this.splitContainer1.ResumeLayout(false);
			this.gbxMain.ResumeLayout(false);
			this.gbxMain.PerformLayout();
			this.ResumeLayout(false);

		}

		#endregion

		private System.Windows.Forms.StatusStrip staStatus;
		private System.Windows.Forms.ToolStripStatusLabel tslblDrive;
		private System.Windows.Forms.ToolStripStatusLabel tslblObjects;
		private System.Windows.Forms.ToolStripStatusLabel tslblSelected;
		private System.Windows.Forms.SplitContainer splitContainer1;
		private System.Windows.Forms.Label label1;
		private System.Windows.Forms.GroupBox gbxMain;
		private System.Windows.Forms.Panel panToolStrip;
	}
}

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
Retired
United Kingdom United Kingdom
I have been a keen hobbyist programmer since getting my first computer - a Vic 20 (you had to be able to write programs then since few programs were available and all were expensive).
Retired and now living in Pewsey, Wiltshire, where I spend (far too much of) my time writing computer programs to keep my mind active.

Comments and Discussions