RevitLookup.Snoop.Forms.Objects.InitializeComponent C# (CSharp) Method

InitializeComponent() protected method

Required method for Designer support - do not modify the contents of this method with the code editor.
protected InitializeComponent ( ) : void
return void
        protected void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
              System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager( typeof( Objects ) );
              this.m_tvObjs = new System.Windows.Forms.TreeView();
              this.m_cntxMenuObjId = new System.Windows.Forms.ContextMenu();
              this.m_mnuItemCopy = new System.Windows.Forms.MenuItem();
              this.m_mnuItemBrowseReflection = new System.Windows.Forms.MenuItem();
              this.m_bnOK = new System.Windows.Forms.Button();
              this.m_lvData = new System.Windows.Forms.ListView();
              this.m_lvCol_label = new System.Windows.Forms.ColumnHeader();
              this.m_lvCol_value = new System.Windows.Forms.ColumnHeader();
              this.listViewContextMenuStrip = new System.Windows.Forms.ContextMenuStrip( this.components );
              this.copyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
              this.toolStrip1 = new System.Windows.Forms.ToolStrip();
              this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
              this.toolStripButton2 = new System.Windows.Forms.ToolStripButton();
              this.m_printDialog = new System.Windows.Forms.PrintDialog();
              this.m_printDocument = new System.Drawing.Printing.PrintDocument();
              this.m_printPreviewDialog = new System.Windows.Forms.PrintPreviewDialog();
              this.toolStripButton3 = new System.Windows.Forms.ToolStripButton();
              this.listViewContextMenuStrip.SuspendLayout();
              this.toolStrip1.SuspendLayout();
              this.SuspendLayout();
              //
              // m_tvObjs
              //
              this.m_tvObjs.Anchor = ( (System.Windows.Forms.AnchorStyles) ( ( ( System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom )
                  | System.Windows.Forms.AnchorStyles.Left ) ) );
              this.m_tvObjs.ContextMenu = this.m_cntxMenuObjId;
              this.m_tvObjs.HideSelection = false;
              this.m_tvObjs.Location = new System.Drawing.Point( 12, 28 );
              this.m_tvObjs.Name = "m_tvObjs";
              this.m_tvObjs.Size = new System.Drawing.Size( 248, 430 );
              this.m_tvObjs.TabIndex = 0;
              this.m_tvObjs.NodeMouseClick += new TreeNodeMouseClickEventHandler( this.TreeNodeSelected );
              this.m_tvObjs.AfterSelect += new System.Windows.Forms.TreeViewEventHandler( this.TreeNodeSelected );
              //
              // m_cntxMenuObjId
              //
              this.m_cntxMenuObjId.MenuItems.AddRange( new System.Windows.Forms.MenuItem[] {
            this.m_mnuItemCopy,
            this.m_mnuItemBrowseReflection} );
              //
              // m_mnuItemCopy
              //
              this.m_mnuItemCopy.Index = 0;
              this.m_mnuItemCopy.Text = "Copy";
              this.m_mnuItemCopy.Click += new System.EventHandler( this.ContextMenuClick_Copy );
              //
              // m_mnuItemBrowseReflection
              //
              this.m_mnuItemBrowseReflection.Index = 1;
              this.m_mnuItemBrowseReflection.Text = "Browse Using Reflection...";
              this.m_mnuItemBrowseReflection.Click += new System.EventHandler( this.ContextMenuClick_BrowseReflection );
              //
              // m_bnOK
              //
              this.m_bnOK.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
              this.m_bnOK.DialogResult = System.Windows.Forms.DialogResult.Cancel;
              this.m_bnOK.FlatStyle = System.Windows.Forms.FlatStyle.System;
              this.m_bnOK.Location = new System.Drawing.Point( 365, 464 );
              this.m_bnOK.Name = "m_bnOK";
              this.m_bnOK.Size = new System.Drawing.Size( 75, 23 );
              this.m_bnOK.TabIndex = 2;
              this.m_bnOK.Text = "OK";
              //
              // m_lvData
              //
              this.m_lvData.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_lvData.Columns.AddRange( new System.Windows.Forms.ColumnHeader[] {
            this.m_lvCol_label,
            this.m_lvCol_value} );
              this.m_lvData.ContextMenuStrip = this.listViewContextMenuStrip;
              this.m_lvData.FullRowSelect = true;
              this.m_lvData.GridLines = true;
              this.m_lvData.Location = new System.Drawing.Point( 284, 28 );
              this.m_lvData.Name = "m_lvData";
              this.m_lvData.ShowItemToolTips = true;
              this.m_lvData.Size = new System.Drawing.Size( 504, 430 );
              this.m_lvData.TabIndex = 3;
              this.m_lvData.UseCompatibleStateImageBehavior = false;
              this.m_lvData.View = System.Windows.Forms.View.Details;
              this.m_lvData.DoubleClick += new System.EventHandler( this.DataItemSelected );
              this.m_lvData.Click += new System.EventHandler( this.DataItemSelected );
              //
              // m_lvCol_label
              //
              this.m_lvCol_label.Text = "Field";
              this.m_lvCol_label.Width = 200;
              //
              // m_lvCol_value
              //
              this.m_lvCol_value.Text = "Value";
              this.m_lvCol_value.Width = 300;
              //
              // listViewContextMenuStrip
              //
              this.listViewContextMenuStrip.Items.AddRange( new System.Windows.Forms.ToolStripItem[] {
            this.copyToolStripMenuItem} );
              this.listViewContextMenuStrip.Name = "listViewContextMenuStrip";
              this.listViewContextMenuStrip.Size = new System.Drawing.Size( 100, 26 );
              //
              // copyToolStripMenuItem
              //
              this.copyToolStripMenuItem.Image = global::RevitLookup.Properties.Resources.COPY;
              this.copyToolStripMenuItem.Name = "copyToolStripMenuItem";
              this.copyToolStripMenuItem.Size = new System.Drawing.Size( 99, 22 );
              this.copyToolStripMenuItem.Text = "Copy";
              this.copyToolStripMenuItem.Click += new System.EventHandler( this.CopyToolStripMenuItem_Click );
              //
              // toolStrip1
              //
              this.toolStrip1.Items.AddRange( new System.Windows.Forms.ToolStripItem[] {
            this.toolStripButton1,
            this.toolStripButton2,
            this.toolStripButton3} );
              this.toolStrip1.Location = new System.Drawing.Point( 0, 0 );
              this.toolStrip1.Name = "toolStrip1";
              this.toolStrip1.Size = new System.Drawing.Size( 800, 25 );
              this.toolStrip1.TabIndex = 4;
              //
              // toolStripButton1
              //
              this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
              this.toolStripButton1.Image = global::RevitLookup.Properties.Resources.Print;
              this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
              this.toolStripButton1.Name = "toolStripButton1";
              this.toolStripButton1.Size = new System.Drawing.Size( 23, 22 );
              this.toolStripButton1.Text = "Print";
              this.toolStripButton1.Click += new System.EventHandler( this.PrintMenuItem_Click );
              //
              // toolStripButton2
              //
              this.toolStripButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
              this.toolStripButton2.Image = global::RevitLookup.Properties.Resources.Preview;
              this.toolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
              this.toolStripButton2.Name = "toolStripButton2";
              this.toolStripButton2.Size = new System.Drawing.Size( 23, 22 );
              this.toolStripButton2.Text = "Print Preview";
              this.toolStripButton2.Click += new System.EventHandler( this.PrintPreviewMenuItem_Click );
              //
              // m_printDialog
              //
              this.m_printDialog.Document = this.m_printDocument;
              this.m_printDialog.UseEXDialog = true;
              //
              // m_printDocument
              //
              this.m_printDocument.PrintPage += new System.Drawing.Printing.PrintPageEventHandler( this.PrintDocument_PrintPage );
              //
              // m_printPreviewDialog
              //
              this.m_printPreviewDialog.AutoScrollMargin = new System.Drawing.Size( 0, 0 );
              this.m_printPreviewDialog.AutoScrollMinSize = new System.Drawing.Size( 0, 0 );
              this.m_printPreviewDialog.ClientSize = new System.Drawing.Size( 400, 300 );
              this.m_printPreviewDialog.Document = this.m_printDocument;
              this.m_printPreviewDialog.Enabled = true;
              this.m_printPreviewDialog.Icon = ( (System.Drawing.Icon) ( resources.GetObject( "m_printPreviewDialog.Icon" ) ) );
              this.m_printPreviewDialog.Name = "m_printPreviewDialog";
              this.m_printPreviewDialog.Visible = false;
              //
              // toolStripButton3
              //
              this.toolStripButton3.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
              this.toolStripButton3.Image = global::RevitLookup.Properties.Resources.COPY;
              this.toolStripButton3.ImageTransparentColor = System.Drawing.Color.Magenta;
              this.toolStripButton3.Name = "toolStripButton3";
              this.toolStripButton3.Size = new System.Drawing.Size( 23, 22 );
              this.toolStripButton3.Text = "Copy To Clipboard";
              this.toolStripButton3.Click += new System.EventHandler( this.ContextMenuClick_Copy );
              //
              // Objects
              //
              this.AutoScaleBaseSize = new System.Drawing.Size( 5, 13 );
              this.CancelButton = this.m_bnOK;
              this.ClientSize = new System.Drawing.Size( 800, 492 );
              this.Controls.Add( this.toolStrip1 );
              this.Controls.Add( this.m_lvData );
              this.Controls.Add( this.m_tvObjs );
              this.Controls.Add( this.m_bnOK );
              this.MaximizeBox = false;
              this.MinimizeBox = false;
              this.MinimumSize = new System.Drawing.Size( 650, 200 );
              this.Name = "Objects";
              this.ShowInTaskbar = false;
              this.Text = "Snoop Objects";
              this.listViewContextMenuStrip.ResumeLayout( false );
              this.toolStrip1.ResumeLayout( false );
              this.toolStrip1.PerformLayout();
              this.ResumeLayout( false );
              this.PerformLayout();
        }