www.pudn.com > DealWithScreenOrientation.rar > MainForm.Designer.cs


namespace DealWithScreenOrientation 
{ 
	partial class MainForm 
	{ 
		///  
		/// Required designer variable. 
		///  
		private System.ComponentModel.IContainer components = null; 
		private System.Windows.Forms.MainMenu m_mainMenu; 
 
		///  
		/// Clean up any resources being used. 
		///  
		/// true if managed resources should be disposed; otherwise, false. 
		protected override void Dispose(bool disposing) 
		{ 
			if(disposing && (components != null)) 
			{ 
				components.Dispose(); 
			} 
			base.Dispose(disposing); 
		} 
 
		#region Windows Form Designer generated code 
 
		///  
		/// Required method for Designer support - do not modify 
		/// the contents of this method with the code editor. 
		///  
		private void InitializeComponent() 
		{ 
			this.m_mainMenu = new System.Windows.Forms.MainMenu(); 
			this.m_mnuEdit = new System.Windows.Forms.MenuItem(); 
			this.m_mnuExit = new System.Windows.Forms.MenuItem(); 
			this.m_lstBooks = new System.Windows.Forms.ListView(); 
			this.m_colISBN = new System.Windows.Forms.ColumnHeader(); 
			this.m_colTitle = new System.Windows.Forms.ColumnHeader(); 
			this.m_colAuthor = new System.Windows.Forms.ColumnHeader(); 
			this.m_colPublisher = new System.Windows.Forms.ColumnHeader(); 
			this.m_colPrice = new System.Windows.Forms.ColumnHeader(); 
			this.m_lblRotate = new System.Windows.Forms.Label(); 
			this.m_cmbRotate = new System.Windows.Forms.ComboBox(); 
			this.SuspendLayout(); 
			//  
			// m_mainMenu 
			//  
			this.m_mainMenu.MenuItems.Add(this.m_mnuEdit); 
			this.m_mainMenu.MenuItems.Add(this.m_mnuExit); 
			//  
			// m_mnuEdit 
			//  
			this.m_mnuEdit.Text = "Edit"; 
			this.m_mnuEdit.Click += new System.EventHandler(this.m_mnuEdit_Click); 
			//  
			// m_mnuExit 
			//  
			this.m_mnuExit.Text = "Exit"; 
			this.m_mnuExit.Click += new System.EventHandler(this.m_mnuExit_Click); 
			//  
			// m_lstBooks 
			//  
			this.m_lstBooks.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
						| System.Windows.Forms.AnchorStyles.Left) 
						| System.Windows.Forms.AnchorStyles.Right))); 
			this.m_lstBooks.Columns.Add(this.m_colISBN); 
			this.m_lstBooks.Columns.Add(this.m_colTitle); 
			this.m_lstBooks.Columns.Add(this.m_colAuthor); 
			this.m_lstBooks.Columns.Add(this.m_colPublisher); 
			this.m_lstBooks.Columns.Add(this.m_colPrice); 
			this.m_lstBooks.FullRowSelect = true; 
			this.m_lstBooks.Location = new System.Drawing.Point(3, 29); 
			this.m_lstBooks.Name = "m_lstBooks"; 
			this.m_lstBooks.Size = new System.Drawing.Size(234, 236); 
			this.m_lstBooks.TabIndex = 0; 
			this.m_lstBooks.View = System.Windows.Forms.View.Details; 
			//  
			// m_colISBN 
			//  
			this.m_colISBN.Text = "ISBN"; 
			this.m_colISBN.Width = 78; 
			//  
			// m_colTitle 
			//  
			this.m_colTitle.Text = "Title"; 
			this.m_colTitle.Width = 151; 
			//  
			// m_colAuthor 
			//  
			this.m_colAuthor.Text = "Author"; 
			this.m_colAuthor.Width = 99; 
			//  
			// m_colPublisher 
			//  
			this.m_colPublisher.Text = "Publisher"; 
			this.m_colPublisher.Width = 155; 
			//  
			// m_colPrice 
			//  
			this.m_colPrice.Text = "Price"; 
			this.m_colPrice.Width = 40; 
			//  
			// m_lblRotate 
			//  
			this.m_lblRotate.Location = new System.Drawing.Point(4, 4); 
			this.m_lblRotate.Name = "m_lblRotate"; 
			this.m_lblRotate.Size = new System.Drawing.Size(55, 22); 
			this.m_lblRotate.Text = "Rotate:"; 
			//  
			// m_cmbRotate 
			//  
			this.m_cmbRotate.Items.Add("0"); 
			this.m_cmbRotate.Items.Add("90"); 
			this.m_cmbRotate.Items.Add("180"); 
			this.m_cmbRotate.Items.Add("270"); 
			this.m_cmbRotate.Location = new System.Drawing.Point(65, 4); 
			this.m_cmbRotate.Name = "m_cmbRotate"; 
			this.m_cmbRotate.Size = new System.Drawing.Size(100, 22); 
			this.m_cmbRotate.TabIndex = 2; 
			this.m_cmbRotate.SelectedIndexChanged += new System.EventHandler(this.m_cmbRotate_SelectedIndexChanged); 
			//  
			// MainForm 
			//  
			this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); 
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; 
			this.AutoScroll = true; 
			this.ClientSize = new System.Drawing.Size(240, 268); 
			this.Controls.Add(this.m_cmbRotate); 
			this.Controls.Add(this.m_lblRotate); 
			this.Controls.Add(this.m_lstBooks); 
			this.Menu = this.m_mainMenu; 
			this.Name = "MainForm"; 
			this.Text = "Books Information"; 
			this.Activated += new System.EventHandler(this.MainForm_Activated); 
			this.ResumeLayout(false); 
 
		} 
 
		#endregion 
 
		private System.Windows.Forms.ListView m_lstBooks; 
		private System.Windows.Forms.MenuItem m_mnuEdit; 
		private System.Windows.Forms.MenuItem m_mnuExit; 
		private System.Windows.Forms.ColumnHeader m_colISBN; 
		private System.Windows.Forms.ColumnHeader m_colTitle; 
		private System.Windows.Forms.ColumnHeader m_colAuthor; 
		private System.Windows.Forms.ColumnHeader m_colPrice; 
		private System.Windows.Forms.ColumnHeader m_colPublisher; 
		private System.Windows.Forms.Label m_lblRotate; 
		private System.Windows.Forms.ComboBox m_cmbRotate; 
	} 
}