Esempio n. 1
0
 /// <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.Windows.Forms.NotifyIcon trayIcon;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CollectionForm));
     System.Windows.Forms.ContextMenuStrip          trayMenu;
     System.Windows.Forms.ToolStripMenuItem         productivityReviewToolStripMenuItem;
     System.Windows.Forms.ToolStripMenuItem         exitToolStripMenuItem;
     trayIcon = new System.Windows.Forms.NotifyIcon(this.components);
     trayMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
     productivityReviewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     trayMenu.SuspendLayout();
     this.SuspendLayout();
     //
     // trayIcon
     //
     trayIcon.ContextMenuStrip = trayMenu;
     trayIcon.Icon             = ((System.Drawing.Icon)(resources.GetObject("trayIcon.Icon")));
     trayIcon.Text             = "Productivity";
     trayIcon.Visible          = true;
     trayIcon.DoubleClick     += new System.EventHandler(this.ProductivityReview_Click);
     //
     // trayMenu
     //
     trayMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         productivityReviewToolStripMenuItem,
         exitToolStripMenuItem
     });
     trayMenu.Name = "trayMenu";
     trayMenu.Size = new System.Drawing.Size(188, 70);
     //
     // productivityReviewToolStripMenuItem
     //
     productivityReviewToolStripMenuItem.Font   = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     productivityReviewToolStripMenuItem.Name   = "productivityReviewToolStripMenuItem";
     productivityReviewToolStripMenuItem.Size   = new System.Drawing.Size(187, 22);
     productivityReviewToolStripMenuItem.Text   = "&Productivity Review";
     productivityReviewToolStripMenuItem.Click += new System.EventHandler(this.ProductivityReview_Click);
     //
     // exitToolStripMenuItem
     //
     exitToolStripMenuItem.Name   = "exitToolStripMenuItem";
     exitToolStripMenuItem.Size   = new System.Drawing.Size(187, 22);
     exitToolStripMenuItem.Text   = "E&xit";
     exitToolStripMenuItem.Click += new System.EventHandler(this.ExitMenuItem_Click);
     //
     // CollectionForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(292, 266);
     this.Icon        = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name        = "CollectionForm";
     this.Text        = "Collection";
     this.WindowState = System.Windows.Forms.FormWindowState.Minimized;
     this.Shown      += new System.EventHandler(this.CollectionForm_Shown);
     trayMenu.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Esempio n. 2
0
 /// <summary>
 /// Erforderliche Methode für die Designerunterstützung.
 /// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.ContextMenuStrip          contextMenuStrip;
     System.Windows.Forms.ToolStripMenuItem         exitMenuItem;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
     this._timer      = new System.Windows.Forms.Timer(this.components);
     this._notifyIcon = new System.Windows.Forms.NotifyIcon(this.components);
     contextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
     exitMenuItem     = new System.Windows.Forms.ToolStripMenuItem();
     contextMenuStrip.SuspendLayout();
     this.SuspendLayout();
     //
     // contextMenuStrip
     //
     contextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         exitMenuItem
     });
     contextMenuStrip.Name = "_contextMenuStrip";
     contextMenuStrip.Size = new System.Drawing.Size(121, 26);
     //
     // exitMenuItem
     //
     exitMenuItem.Name   = "exitMenuItem";
     exitMenuItem.Size   = new System.Drawing.Size(120, 22);
     exitMenuItem.Text   = "Be&enden";
     exitMenuItem.Click += new System.EventHandler(this.OnExitApp);
     //
     // _timer
     //
     this._timer.Enabled  = true;
     this._timer.Interval = 5000;
     this._timer.Tick    += new System.EventHandler(this.OnCheckDisk);
     //
     // _notifyIcon
     //
     this._notifyIcon.BalloonTipIcon   = System.Windows.Forms.ToolTipIcon.Info;
     this._notifyIcon.BalloonTipText   = "Prüfe alle 10 min.";
     this._notifyIcon.BalloonTipTitle  = "Keep Disk Alive";
     this._notifyIcon.ContextMenuStrip = contextMenuStrip;
     this._notifyIcon.Icon             = ((System.Drawing.Icon)(resources.GetObject("_notifyIcon.Icon")));
     this._notifyIcon.Text             = "Keep Disk Alive";
     this._notifyIcon.Visible          = true;
     this._notifyIcon.MouseClick      += new System.Windows.Forms.MouseEventHandler(this.ShowBallon);
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(284, 111);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name          = "MainForm";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Keep Disk";
     this.WindowState   = System.Windows.Forms.FormWindowState.Minimized;
     contextMenuStrip.ResumeLayout(false);
     this.ResumeLayout(false);
 }
        void ContextMenuStrip_Opening(object sender, System.ComponentModel.CancelEventArgs e)
        {
            e.Cancel = false;

            System.Windows.Forms.ContextMenuStrip menu = sender as System.Windows.Forms.ContextMenuStrip;

            menu.SuspendLayout();

            // repopulate the context menu with stuff provided by the backend
            menu.Items.Clear();

            List <NodeIdWrapper> selection = new List <NodeIdWrapper>();

            foreach (TreeNodeAdv node in treeView.SelectedNodes)
            {
                GrtListNode listNode = node.Tag as GrtListNode;
                selection.Add(listNode.NodeId);
            }

            List <MySQL.Base.MenuItem> items = grtList.get_popup_items_for_nodes(selection);

            foreach (MySQL.Base.MenuItem item in items)
            {
                if (item.get_type() == MySQL.Base.MenuItemType.MenuSeparator)
                {
                    menu.Items.Add(new System.Windows.Forms.ToolStripSeparator());
                }
                else
                {
                    System.Windows.Forms.ToolStripMenuItem mitem = new System.Windows.Forms.ToolStripMenuItem();

                    mitem.Name    = item.getInternalName();
                    mitem.Size    = new System.Drawing.Size(203, 22);
                    mitem.Text    = item.get_caption();
                    mitem.Enabled = item.get_enabled();
                    mitem.Click  += new EventHandler(contextMenuItem_Click);
                    menu.Items.Add(mitem);
                }
            }

            menu.ResumeLayout();
        }
 /// <summary>
 /// デザイナー サポートに必要なメソッドです。このメソッドの内容を
 /// コード エディターで変更しないでください。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.ContextMenuStrip          notifyMenu;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(NotifyIconWrapper));
     this.Add_new_memo         = new System.Windows.Forms.ToolStripMenuItem();
     this.change_transportmode = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1  = new System.Windows.Forms.ToolStripSeparator();
     this.exit_app             = new System.Windows.Forms.ToolStripMenuItem();
     this.notifyIcon1          = new System.Windows.Forms.NotifyIcon(this.components);
     this.about_version        = new System.Windows.Forms.ToolStripMenuItem();
     notifyMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
     notifyMenu.SuspendLayout();
     //
     // notifyMenu
     //
     notifyMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.Add_new_memo,
         this.change_transportmode,
         this.toolStripSeparator1,
         this.about_version,
         this.exit_app
     });
     notifyMenu.Name = "notifyMenu";
     notifyMenu.Size = new System.Drawing.Size(156, 98);
     //
     // Add_new_memo
     //
     this.Add_new_memo.AutoSize = false;
     this.Add_new_memo.Name     = "Add_new_memo";
     this.Add_new_memo.Size     = new System.Drawing.Size(155, 22);
     this.Add_new_memo.Text     = "新しいメモを追加";
     //
     // change_transportmode
     //
     this.change_transportmode.CheckOnClick = true;
     this.change_transportmode.Name         = "change_transportmode";
     this.change_transportmode.Size         = new System.Drawing.Size(155, 22);
     this.change_transportmode.Text         = "透過モード";
     this.change_transportmode.Click       += new System.EventHandler(this.change_transportmode_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(152, 6);
     //
     // exit_app
     //
     this.exit_app.Name = "exit_app";
     this.exit_app.Size = new System.Drawing.Size(155, 22);
     this.exit_app.Text = "終了";
     //
     // notifyIcon1
     //
     this.notifyIcon1.ContextMenuStrip = notifyMenu;
     this.notifyIcon1.Icon             = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon")));
     this.notifyIcon1.Text             = "lentum";
     this.notifyIcon1.Visible          = true;
     //
     // about_version
     //
     this.about_version.Name   = "about_version";
     this.about_version.Size   = new System.Drawing.Size(155, 22);
     this.about_version.Text   = "lentumについて";
     this.about_version.Click += new System.EventHandler(this.about_version_Click);
     notifyMenu.ResumeLayout(false);
 }
Esempio n. 5
0
		/// <summary>
		/// デザイナー サポートに必要なメソッドです。このメソッドの内容を
		/// コード エディターで変更しないでください。
		/// </summary>
		private void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			System.Windows.Forms.ContextMenuStrip conImage;
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ContentsView));
			this.itmOpen = new System.Windows.Forms.ToolStripMenuItem();
			this.itmDelete = new System.Windows.Forms.ToolStripMenuItem();
			this.sepImage1 = new System.Windows.Forms.ToolStripSeparator();
			this.itmExport = new System.Windows.Forms.ToolStripMenuItem();
			this.itmExtract = new System.Windows.Forms.ToolStripMenuItem();
			this.sepImage2 = new System.Windows.Forms.ToolStripSeparator();
			this.itmAddToBookmark = new System.Windows.Forms.ToolStripMenuItem();
			this.dgvImages = new Comical.Controls.DraggableDataGridView();
			this.clmImage = new System.Windows.Forms.DataGridViewImageColumn();
			this.clmViewMode = new System.Windows.Forms.DataGridViewComboBoxColumn();
			conImage = new System.Windows.Forms.ContextMenuStrip(this.components);
			conImage.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.dgvImages)).BeginInit();
			this.SuspendLayout();
			// 
			// conImage
			// 
			conImage.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.itmOpen,
            this.itmDelete,
            this.sepImage1,
            this.itmExport,
            this.itmExtract,
            this.sepImage2,
            this.itmAddToBookmark});
			conImage.Name = "conImage";
			resources.ApplyResources(conImage, "conImage");
			// 
			// itmOpen
			// 
			resources.ApplyResources(this.itmOpen, "itmOpen");
			this.itmOpen.Name = "itmOpen";
			this.itmOpen.Click += new System.EventHandler(this.itmOpen_Click);
			// 
			// itmDelete
			// 
			resources.ApplyResources(this.itmDelete, "itmDelete");
			this.itmDelete.Name = "itmDelete";
			this.itmDelete.Click += new System.EventHandler(this.itmDelete_Click);
			// 
			// sepImage1
			// 
			this.sepImage1.Name = "sepImage1";
			resources.ApplyResources(this.sepImage1, "sepImage1");
			// 
			// itmExport
			// 
			resources.ApplyResources(this.itmExport, "itmExport");
			this.itmExport.Name = "itmExport";
			// 
			// itmExtract
			// 
			resources.ApplyResources(this.itmExtract, "itmExtract");
			this.itmExtract.Name = "itmExtract";
			// 
			// sepImage2
			// 
			this.sepImage2.Name = "sepImage2";
			resources.ApplyResources(this.sepImage2, "sepImage2");
			// 
			// itmAddToBookmark
			// 
			this.itmAddToBookmark.Name = "itmAddToBookmark";
			resources.ApplyResources(this.itmAddToBookmark, "itmAddToBookmark");
			// 
			// dgvImages
			// 
			this.dgvImages.AllowDrop = true;
			this.dgvImages.AllowUserToAddRows = false;
			this.dgvImages.AllowUserToMoveRows = true;
			this.dgvImages.AllowUserToResizeColumns = false;
			this.dgvImages.AllowUserToResizeRows = false;
			this.dgvImages.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
			this.dgvImages.BackgroundColor = System.Drawing.SystemColors.Control;
			this.dgvImages.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.dgvImages.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.None;
			this.dgvImages.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
			this.dgvImages.ColumnHeadersVisible = false;
			this.dgvImages.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.clmImage,
            this.clmViewMode});
			this.dgvImages.ContextMenuStrip = conImage;
			resources.ApplyResources(this.dgvImages, "dgvImages");
			this.dgvImages.EditMode = System.Windows.Forms.DataGridViewEditMode.EditProgrammatically;
			this.dgvImages.GridColor = System.Drawing.SystemColors.Control;
			this.dgvImages.MultiDrag = true;
			this.dgvImages.Name = "dgvImages";
			this.dgvImages.RowHeadersVisible = false;
			this.dgvImages.RowTemplate.Height = 42;
			this.dgvImages.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
			this.dgvImages.ShowCellToolTips = false;
			this.dgvImages.VirtualMode = true;
			this.dgvImages.RowMoving += new System.EventHandler<Comical.Controls.RowMovingEventArgs>(this.dgvImages_RowMoving);
			this.dgvImages.QueryActualDestination += new System.EventHandler<Comical.Controls.QueryActualDestinationEventArgs>(this.dgvImages_QueryActualDestination);
			this.dgvImages.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvImages_CellDoubleClick);
			this.dgvImages.CellValueNeeded += new System.Windows.Forms.DataGridViewCellValueEventHandler(this.dgvImages_CellValueNeeded);
			this.dgvImages.CellValuePushed += new System.Windows.Forms.DataGridViewCellValueEventHandler(this.dgvImages_CellValuePushed);
			this.dgvImages.SelectionChanged += new System.EventHandler(this.dgvImages_SelectionChanged);
			this.dgvImages.UserDeletedRow += new System.Windows.Forms.DataGridViewRowEventHandler(this.dgvImages_UserDeletedRow);
			this.dgvImages.UserDeletingRow += new System.Windows.Forms.DataGridViewRowCancelEventHandler(this.dgvImages_UserDeletingRow);
			this.dgvImages.DragDrop += new System.Windows.Forms.DragEventHandler(this.dgvImages_DragDrop);
			this.dgvImages.DragEnter += new System.Windows.Forms.DragEventHandler(this.dgvImages_DragEnter);
			// 
			// clmImage
			// 
			this.clmImage.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
			resources.ApplyResources(this.clmImage, "clmImage");
			this.clmImage.Name = "clmImage";
			this.clmImage.Resizable = System.Windows.Forms.DataGridViewTriState.False;
			// 
			// clmViewMode
			// 
			this.clmViewMode.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
			this.clmViewMode.FillWeight = 80F;
			resources.ApplyResources(this.clmViewMode, "clmViewMode");
			this.clmViewMode.Name = "clmViewMode";
			// 
			// ContentsView
			// 
			this.AllowDrop = true;
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
			resources.ApplyResources(this, "$this");
			this.Controls.Add(this.dgvImages);
			this.HideOnClose = true;
			this.Name = "ContentsView";
			conImage.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.dgvImages)).EndInit();
			this.ResumeLayout(false);

		}
 /// <summary>
 /// デザイナー サポートに必要なメソッドです。このメソッドの内容を
 /// コード エディターで変更しないでください。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.ContextMenuStrip          conImage;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ContentsView));
     this.itmOpen          = new System.Windows.Forms.ToolStripMenuItem();
     this.itmDelete        = new System.Windows.Forms.ToolStripMenuItem();
     this.sepImage1        = new System.Windows.Forms.ToolStripSeparator();
     this.itmExport        = new System.Windows.Forms.ToolStripMenuItem();
     this.itmExtract       = new System.Windows.Forms.ToolStripMenuItem();
     this.sepImage2        = new System.Windows.Forms.ToolStripSeparator();
     this.itmAddToBookmark = new System.Windows.Forms.ToolStripMenuItem();
     this.dgvImages        = new Comical.Controls.DraggableDataGridView();
     this.clmImage         = new System.Windows.Forms.DataGridViewImageColumn();
     this.clmViewMode      = new System.Windows.Forms.DataGridViewComboBoxColumn();
     conImage = new System.Windows.Forms.ContextMenuStrip(this.components);
     conImage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvImages)).BeginInit();
     this.SuspendLayout();
     //
     // conImage
     //
     conImage.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.itmOpen,
         this.itmDelete,
         this.sepImage1,
         this.itmExport,
         this.itmExtract,
         this.sepImage2,
         this.itmAddToBookmark
     });
     conImage.Name = "conImage";
     resources.ApplyResources(conImage, "conImage");
     //
     // itmOpen
     //
     resources.ApplyResources(this.itmOpen, "itmOpen");
     this.itmOpen.Name   = "itmOpen";
     this.itmOpen.Click += new System.EventHandler(this.itmOpen_Click);
     //
     // itmDelete
     //
     resources.ApplyResources(this.itmDelete, "itmDelete");
     this.itmDelete.Name   = "itmDelete";
     this.itmDelete.Click += new System.EventHandler(this.itmDelete_Click);
     //
     // sepImage1
     //
     this.sepImage1.Name = "sepImage1";
     resources.ApplyResources(this.sepImage1, "sepImage1");
     //
     // itmExport
     //
     resources.ApplyResources(this.itmExport, "itmExport");
     this.itmExport.Name = "itmExport";
     //
     // itmExtract
     //
     resources.ApplyResources(this.itmExtract, "itmExtract");
     this.itmExtract.Name = "itmExtract";
     //
     // sepImage2
     //
     this.sepImage2.Name = "sepImage2";
     resources.ApplyResources(this.sepImage2, "sepImage2");
     //
     // itmAddToBookmark
     //
     this.itmAddToBookmark.Name = "itmAddToBookmark";
     resources.ApplyResources(this.itmAddToBookmark, "itmAddToBookmark");
     //
     // dgvImages
     //
     this.dgvImages.AllowDrop                   = true;
     this.dgvImages.AllowUserToAddRows          = false;
     this.dgvImages.AllowUserToMoveRows         = true;
     this.dgvImages.AllowUserToResizeColumns    = false;
     this.dgvImages.AllowUserToResizeRows       = false;
     this.dgvImages.AutoSizeColumnsMode         = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dgvImages.BackgroundColor             = System.Drawing.SystemColors.Control;
     this.dgvImages.BorderStyle                 = System.Windows.Forms.BorderStyle.Fixed3D;
     this.dgvImages.CellBorderStyle             = System.Windows.Forms.DataGridViewCellBorderStyle.None;
     this.dgvImages.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgvImages.ColumnHeadersVisible        = false;
     this.dgvImages.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
         this.clmImage,
         this.clmViewMode
     });
     this.dgvImages.ContextMenuStrip = conImage;
     resources.ApplyResources(this.dgvImages, "dgvImages");
     this.dgvImages.EditMode                = System.Windows.Forms.DataGridViewEditMode.EditProgrammatically;
     this.dgvImages.GridColor               = System.Drawing.SystemColors.Control;
     this.dgvImages.MultiDrag               = true;
     this.dgvImages.Name                    = "dgvImages";
     this.dgvImages.RowHeadersVisible       = false;
     this.dgvImages.RowTemplate.Height      = 42;
     this.dgvImages.SelectionMode           = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dgvImages.ShowCellToolTips        = false;
     this.dgvImages.VirtualMode             = true;
     this.dgvImages.RowMoving              += new System.EventHandler <Comical.Controls.RowMovingEventArgs>(this.dgvImages_RowMoving);
     this.dgvImages.QueryActualDestination += new System.EventHandler <Comical.Controls.QueryActualDestinationEventArgs>(this.dgvImages_QueryActualDestination);
     this.dgvImages.CellDoubleClick        += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvImages_CellDoubleClick);
     this.dgvImages.CellValueNeeded        += new System.Windows.Forms.DataGridViewCellValueEventHandler(this.dgvImages_CellValueNeeded);
     this.dgvImages.CellValuePushed        += new System.Windows.Forms.DataGridViewCellValueEventHandler(this.dgvImages_CellValuePushed);
     this.dgvImages.SelectionChanged       += new System.EventHandler(this.dgvImages_SelectionChanged);
     this.dgvImages.UserDeletedRow         += new System.Windows.Forms.DataGridViewRowEventHandler(this.dgvImages_UserDeletedRow);
     this.dgvImages.UserDeletingRow        += new System.Windows.Forms.DataGridViewRowCancelEventHandler(this.dgvImages_UserDeletingRow);
     this.dgvImages.DragDrop               += new System.Windows.Forms.DragEventHandler(this.dgvImages_DragDrop);
     this.dgvImages.DragEnter              += new System.Windows.Forms.DragEventHandler(this.dgvImages_DragEnter);
     //
     // clmImage
     //
     this.clmImage.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     resources.ApplyResources(this.clmImage, "clmImage");
     this.clmImage.Name      = "clmImage";
     this.clmImage.Resizable = System.Windows.Forms.DataGridViewTriState.False;
     //
     // clmViewMode
     //
     this.clmViewMode.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
     this.clmViewMode.FillWeight   = 80F;
     resources.ApplyResources(this.clmViewMode, "clmViewMode");
     this.clmViewMode.Name = "clmViewMode";
     //
     // ContentsView
     //
     this.AllowDrop     = true;
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     resources.ApplyResources(this, "$this");
     this.Controls.Add(this.dgvImages);
     this.HideOnClose = true;
     this.Name        = "ContentsView";
     conImage.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dgvImages)).EndInit();
     this.ResumeLayout(false);
 }
 /// <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.Windows.Forms.ContextMenuStrip contextMenuStrip;
     System.Windows.Forms.SplitContainer   splitContainer1;
     System.Windows.Forms.SplitContainer   splitContainer2;
     System.Windows.Forms.Panel            panel1;
     System.Windows.Forms.Label            label1;
     this._openButton         = new System.Windows.Forms.ToolStripMenuItem();
     this._expandAllButton    = new System.Windows.Forms.ToolStripMenuItem();
     this._refreshButton      = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem1  = new System.Windows.Forms.ToolStripSeparator();
     this._cutButton          = new System.Windows.Forms.ToolStripMenuItem();
     this._pasteButton        = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem2  = new System.Windows.Forms.ToolStripSeparator();
     this._newFolderButton    = new System.Windows.Forms.ToolStripMenuItem();
     this._importButton       = new System.Windows.Forms.ToolStripMenuItem();
     this._importFolderButton = new System.Windows.Forms.ToolStripMenuItem();
     this._importFileButton   = new System.Windows.Forms.ToolStripMenuItem();
     this._exportButton       = new System.Windows.Forms.ToolStripMenuItem();
     this._replaceButton      = new System.Windows.Forms.ToolStripMenuItem();
     this._deleteButton       = new System.Windows.Forms.ToolStripMenuItem();
     this._treeView           = new System.Windows.Forms.TreeView();
     this._imageList          = new System.Windows.Forms.ImageList(this.components);
     this._propGrid           = new System.Windows.Forms.PropertyGrid();
     this._saveButton         = new System.Windows.Forms.Button();
     this._logText            = new System.Windows.Forms.TextBox();
     this._formModeCheck      = new System.Windows.Forms.CheckBox();
     this._serverUrlText      = new System.Windows.Forms.TextBox();
     contextMenuStrip         = new System.Windows.Forms.ContextMenuStrip(this.components);
     splitContainer1          = new System.Windows.Forms.SplitContainer();
     splitContainer2          = new System.Windows.Forms.SplitContainer();
     panel1 = new System.Windows.Forms.Panel();
     label1 = new System.Windows.Forms.Label();
     contextMenuStrip.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(splitContainer1)).BeginInit();
     splitContainer1.Panel1.SuspendLayout();
     splitContainer1.Panel2.SuspendLayout();
     splitContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(splitContainer2)).BeginInit();
     splitContainer2.Panel1.SuspendLayout();
     splitContainer2.Panel2.SuspendLayout();
     splitContainer2.SuspendLayout();
     panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // contextMenuStrip
     //
     contextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this._openButton,
         this._expandAllButton,
         this._refreshButton,
         this.toolStripMenuItem1,
         this._cutButton,
         this._pasteButton,
         this.toolStripMenuItem2,
         this._newFolderButton,
         this._importButton,
         this._exportButton,
         this._replaceButton,
         this._deleteButton
     });
     contextMenuStrip.Name = "_menu";
     contextMenuStrip.Size = new System.Drawing.Size(135, 236);
     //
     // _openButton
     //
     this._openButton.Name   = "_openButton";
     this._openButton.Size   = new System.Drawing.Size(134, 22);
     this._openButton.Text   = "Open";
     this._openButton.Click += new System.EventHandler(this._openButton_Click);
     //
     // _expandAllButton
     //
     this._expandAllButton.Name   = "_expandAllButton";
     this._expandAllButton.Size   = new System.Drawing.Size(134, 22);
     this._expandAllButton.Text   = "Expand All";
     this._expandAllButton.Click += new System.EventHandler(this._expandAllButton_Click);
     //
     // _refreshButton
     //
     this._refreshButton.Name   = "_refreshButton";
     this._refreshButton.Size   = new System.Drawing.Size(134, 22);
     this._refreshButton.Text   = "Refresh";
     this._refreshButton.Click += new System.EventHandler(this._refreshButton_Click);
     //
     // toolStripMenuItem1
     //
     this.toolStripMenuItem1.Name = "toolStripMenuItem1";
     this.toolStripMenuItem1.Size = new System.Drawing.Size(131, 6);
     //
     // _cutButton
     //
     this._cutButton.Name   = "_cutButton";
     this._cutButton.Size   = new System.Drawing.Size(134, 22);
     this._cutButton.Text   = "Cut";
     this._cutButton.Click += new System.EventHandler(this._cutButton_Click);
     //
     // _pasteButton
     //
     this._pasteButton.Name   = "_pasteButton";
     this._pasteButton.Size   = new System.Drawing.Size(134, 22);
     this._pasteButton.Text   = "Paste";
     this._pasteButton.Click += new System.EventHandler(this._pasteButton_Click);
     //
     // toolStripMenuItem2
     //
     this.toolStripMenuItem2.Name = "toolStripMenuItem2";
     this.toolStripMenuItem2.Size = new System.Drawing.Size(131, 6);
     //
     // _newFolderButton
     //
     this._newFolderButton.Name   = "_newFolderButton";
     this._newFolderButton.Size   = new System.Drawing.Size(134, 22);
     this._newFolderButton.Text   = "New Folder";
     this._newFolderButton.Click += new System.EventHandler(this._newFolderButton_Click);
     //
     // _importButton
     //
     this._importButton.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this._importFolderButton,
         this._importFileButton
     });
     this._importButton.Name = "_importButton";
     this._importButton.Size = new System.Drawing.Size(134, 22);
     this._importButton.Text = "Import";
     //
     // _importFolderButton
     //
     this._importFolderButton.Name   = "_importFolderButton";
     this._importFolderButton.Size   = new System.Drawing.Size(107, 22);
     this._importFolderButton.Text   = "Folder";
     this._importFolderButton.Click += new System.EventHandler(this._importFolderButton_Click);
     //
     // _importFileButton
     //
     this._importFileButton.Name   = "_importFileButton";
     this._importFileButton.Size   = new System.Drawing.Size(107, 22);
     this._importFileButton.Text   = "File";
     this._importFileButton.Click += new System.EventHandler(this._importFileButton_Click);
     //
     // _exportButton
     //
     this._exportButton.Name   = "_exportButton";
     this._exportButton.Size   = new System.Drawing.Size(134, 22);
     this._exportButton.Text   = "Export";
     this._exportButton.Click += new System.EventHandler(this._exportButton_Click);
     //
     // _replaceButton
     //
     this._replaceButton.Name   = "_replaceButton";
     this._replaceButton.Size   = new System.Drawing.Size(134, 22);
     this._replaceButton.Text   = "Replace";
     this._replaceButton.Click += new System.EventHandler(this._replaceButton_Click);
     //
     // _deleteButton
     //
     this._deleteButton.Name   = "_deleteButton";
     this._deleteButton.Size   = new System.Drawing.Size(134, 22);
     this._deleteButton.Text   = "Delete";
     this._deleteButton.Click += new System.EventHandler(this._deleteButton_Click);
     //
     // splitContainer1
     //
     splitContainer1.Dock        = System.Windows.Forms.DockStyle.Fill;
     splitContainer1.Location    = new System.Drawing.Point(0, 28);
     splitContainer1.Name        = "splitContainer1";
     splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer1.Panel1
     //
     splitContainer1.Panel1.Controls.Add(splitContainer2);
     //
     // splitContainer1.Panel2
     //
     splitContainer1.Panel2.Controls.Add(this._logText);
     splitContainer1.Size             = new System.Drawing.Size(784, 533);
     splitContainer1.SplitterDistance = 436;
     splitContainer1.TabIndex         = 1;
     //
     // splitContainer2
     //
     splitContainer2.Dock     = System.Windows.Forms.DockStyle.Fill;
     splitContainer2.Location = new System.Drawing.Point(0, 0);
     splitContainer2.Name     = "splitContainer2";
     //
     // splitContainer2.Panel1
     //
     splitContainer2.Panel1.Controls.Add(this._treeView);
     //
     // splitContainer2.Panel2
     //
     splitContainer2.Panel2.Controls.Add(this._propGrid);
     splitContainer2.Panel2.Controls.Add(this._saveButton);
     splitContainer2.Size             = new System.Drawing.Size(784, 436);
     splitContainer2.SplitterDistance = 383;
     splitContainer2.TabIndex         = 0;
     //
     // _treeView
     //
     this._treeView.AllowDrop             = true;
     this._treeView.ContextMenuStrip      = contextMenuStrip;
     this._treeView.Dock                  = System.Windows.Forms.DockStyle.Fill;
     this._treeView.HideSelection         = false;
     this._treeView.ImageIndex            = 0;
     this._treeView.ImageList             = this._imageList;
     this._treeView.ItemHeight            = 18;
     this._treeView.LabelEdit             = true;
     this._treeView.Location              = new System.Drawing.Point(0, 0);
     this._treeView.Name                  = "_treeView";
     this._treeView.SelectedImageIndex    = 0;
     this._treeView.Size                  = new System.Drawing.Size(383, 436);
     this._treeView.TabIndex              = 0;
     this._treeView.AfterLabelEdit       += new System.Windows.Forms.NodeLabelEditEventHandler(this._treeView_AfterLabelEdit);
     this._treeView.BeforeExpand         += new System.Windows.Forms.TreeViewCancelEventHandler(this._treeView_BeforeExpand);
     this._treeView.AfterSelect          += new System.Windows.Forms.TreeViewEventHandler(this._treeView_AfterSelect);
     this._treeView.NodeMouseDoubleClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this._treeView_NodeMouseDoubleClick);
     this._treeView.DragDrop             += new System.Windows.Forms.DragEventHandler(this._treeView_DragDrop);
     this._treeView.DragOver             += new System.Windows.Forms.DragEventHandler(this._treeView_DragOver);
     this._treeView.KeyUp                += new System.Windows.Forms.KeyEventHandler(this._treeView_KeyUp);
     this._treeView.MouseUp              += new System.Windows.Forms.MouseEventHandler(this._treeView_MouseUp);
     //
     // _imageList
     //
     this._imageList.ColorDepth       = System.Windows.Forms.ColorDepth.Depth32Bit;
     this._imageList.ImageSize        = new System.Drawing.Size(16, 16);
     this._imageList.TransparentColor = System.Drawing.Color.Transparent;
     //
     // _propGrid
     //
     this._propGrid.Dock           = System.Windows.Forms.DockStyle.Fill;
     this._propGrid.HelpVisible    = false;
     this._propGrid.Location       = new System.Drawing.Point(0, 0);
     this._propGrid.Name           = "_propGrid";
     this._propGrid.Size           = new System.Drawing.Size(397, 413);
     this._propGrid.TabIndex       = 0;
     this._propGrid.ToolbarVisible = false;
     //
     // _saveButton
     //
     this._saveButton.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this._saveButton.Location = new System.Drawing.Point(0, 413);
     this._saveButton.Name     = "_saveButton";
     this._saveButton.Size     = new System.Drawing.Size(397, 23);
     this._saveButton.TabIndex = 1;
     this._saveButton.Text     = "Save";
     this._saveButton.UseVisualStyleBackColor = true;
     this._saveButton.Click += new System.EventHandler(this._saveButton_Click);
     //
     // _logText
     //
     this._logText.Dock       = System.Windows.Forms.DockStyle.Fill;
     this._logText.Font       = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this._logText.Location   = new System.Drawing.Point(0, 0);
     this._logText.Multiline  = true;
     this._logText.Name       = "_logText";
     this._logText.ScrollBars = System.Windows.Forms.ScrollBars.Both;
     this._logText.Size       = new System.Drawing.Size(784, 93);
     this._logText.TabIndex   = 0;
     this._logText.WordWrap   = false;
     this._logText.KeyUp     += new System.Windows.Forms.KeyEventHandler(this._logBox_KeyUp);
     //
     // panel1
     //
     panel1.Controls.Add(this._formModeCheck);
     panel1.Controls.Add(label1);
     panel1.Controls.Add(this._serverUrlText);
     panel1.Dock     = System.Windows.Forms.DockStyle.Top;
     panel1.Location = new System.Drawing.Point(0, 0);
     panel1.Name     = "panel1";
     panel1.Size     = new System.Drawing.Size(784, 28);
     panel1.TabIndex = 0;
     //
     // _formModeCheck
     //
     this._formModeCheck.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this._formModeCheck.AutoSize   = true;
     this._formModeCheck.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this._formModeCheck.Location   = new System.Drawing.Point(692, 6);
     this._formModeCheck.Name       = "_formModeCheck";
     this._formModeCheck.Size       = new System.Drawing.Size(82, 17);
     this._formModeCheck.TabIndex   = 7;
     this._formModeCheck.Text       = "Form Mode:";
     this._formModeCheck.UseVisualStyleBackColor = true;
     this._formModeCheck.CheckedChanged         += new System.EventHandler(this._formModeCheck_CheckedChanged);
     //
     // label1
     //
     label1.AutoSize = true;
     label1.Location = new System.Drawing.Point(8, 8);
     label1.Name     = "label1";
     label1.Size     = new System.Drawing.Size(66, 13);
     label1.TabIndex = 0;
     label1.Text     = "Server URL:";
     //
     // _serverUrlText
     //
     this._serverUrlText.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                        | System.Windows.Forms.AnchorStyles.Right)));
     this._serverUrlText.Location = new System.Drawing.Point(76, 4);
     this._serverUrlText.Name     = "_serverUrlText";
     this._serverUrlText.Size     = new System.Drawing.Size(604, 20);
     this._serverUrlText.TabIndex = 1;
     this._serverUrlText.Leave   += new System.EventHandler(this._serverUrlText_Leave);
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(784, 561);
     this.Controls.Add(splitContainer1);
     this.Controls.Add(panel1);
     this.Name          = "MainForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Saleslogix File Browser";
     contextMenuStrip.ResumeLayout(false);
     splitContainer1.Panel1.ResumeLayout(false);
     splitContainer1.Panel2.ResumeLayout(false);
     splitContainer1.Panel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(splitContainer1)).EndInit();
     splitContainer1.ResumeLayout(false);
     splitContainer2.Panel1.ResumeLayout(false);
     splitContainer2.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(splitContainer2)).EndInit();
     splitContainer2.ResumeLayout(false);
     panel1.ResumeLayout(false);
     panel1.PerformLayout();
     this.ResumeLayout(false);
 }
Esempio n. 8
0
        public static void Main()
        {
            application = new App();
            application.InitializeComponent();
            ToolTipService.ShowDurationProperty.OverrideMetadata(
                typeof(DependencyObject), new FrameworkPropertyMetadata(Int32.MaxValue));
            ToolTipService.InitialShowDelayProperty.OverrideMetadata(
                typeof(DependencyObject), new FrameworkPropertyMetadata(0));

            if (!Directory.Exists(Helpers.UserDataFolder))
            {
                Directory.CreateDirectory(Helpers.UserDataFolder);
            }

            System.Diagnostics.Process.GetCurrentProcess().PriorityClass = System.Diagnostics.ProcessPriorityClass.RealTime;

            // Tray icon initialization
            {
                System.Windows.Forms.ContextMenuStrip context_menu_strip = new System.Windows.Forms.ContextMenuStrip {
                    Visible = true
                };

                context_menu_strip.SuspendLayout();

                System.Windows.Forms.ToolStripMenuItem settings = new System.Windows.Forms.ToolStripMenuItem {
                    Text = "Settings", Visible = true
                };
                settings.Click += OpenSettings;

                System.Windows.Forms.ToolStripMenuItem reset_calibration = new System.Windows.Forms.ToolStripMenuItem {
                    Text = "Reset calibration", Visible = true
                };
                reset_calibration.Click += ResetCalibration;

                System.Windows.Forms.ToolStripMenuItem exit = new System.Windows.Forms.ToolStripMenuItem {
                    Text = "Exit", Visible = true
                };
                exit.Click += Shutdown;

                context_menu_strip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { settings, reset_calibration, exit });

                context_menu_strip.ResumeLayout(false);
                Helpers.tray_icon.ContextMenuStrip = context_menu_strip;
                Helpers.tray_icon.MouseClick      += Tray_icon_Click;
            }

            eye_tracking_mouse = new EyeTrackingMouse();
            input_manager      = new InputManager(eye_tracking_mouse);

            Task.Run(() =>
            {
                if (Path.GetFullPath(Environment.CurrentDirectory).StartsWith(
                        Path.GetFullPath(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData))))
                {
                    try
                    {
                        string path = Environment.GetEnvironmentVariable("EYE_TRACKING_MOUSE_UPDATE_FROM");
                        if (path == null || path.Length == 0)
                        {
                            using (var update_manager = UpdateManager.GitHubUpdateManager("https://github.com/Romex91/EyeTrackingMouse").Result)
                            {
                                update_manager.UpdateApp().Wait();
                            }
                        }
                        else
                        {
                            if (!Directory.Exists(path))
                            {
                                MessageBox.Show("Inexistent directory in EYE_TRACKING_MOUSE_UPDATE_FROM environment variable");
                                return;
                            }
                            using (var update_manager = new UpdateManager(path))
                            {
                                update_manager.UpdateApp().Wait();
                            }
                        }
                    }
                    catch (Exception)
                    {
                    }
                }
            });

            SquirrelAwareApp.HandleEvents(
                onAppUninstall: v =>
            {
                Helpers.RemoveShortcuts();
                lock (Helpers.locker)
                {
                    if (Options.Instance.key_bindings.is_driver_installed)
                    {
                        string interception_installer = System.IO.Path.Combine(
                            Directory.GetParent(System.Reflection.Assembly.GetEntryAssembly().Location).FullName,
                            "install-interception.exe");

                        var process = System.Diagnostics.Process.Start(
                            interception_installer, " /uninstall");
                    }
                }

                Helpers.DeleteAppFiles();
            },
                onFirstRun: () =>
            {
                Helpers.CreateShortcuts();
                Autostart.Enable();
                OpenSettings(null, null);
            });


            application.Run();

            eye_tracking_mouse.Dispose();
            Helpers.tray_icon.Visible = false;
        }
Esempio n. 9
0
 /// <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.Windows.Forms.ContextMenuStrip          trayMenu;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
     this.openToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem2     = new System.Windows.Forms.ToolStripSeparator();
     this.exitToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.splitContainer1        = new System.Windows.Forms.SplitContainer();
     this.pictureBox1            = new System.Windows.Forms.PictureBox();
     this.tree          = new BrightIdeasSoftware.TreeListView();
     this.cSort         = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.treeMenu      = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.imageList1    = new System.Windows.Forms.ImageList(this.components);
     this.statusBar     = new System.Windows.Forms.StatusStrip();
     this.btnAdd        = new System.Windows.Forms.ToolStripDropDownButton();
     this.btnPin        = new System.Windows.Forms.ToolStripDropDownButton();
     this.statusText    = new System.Windows.Forms.ToolStripStatusLabel();
     this.btnSync       = new System.Windows.Forms.ToolStripDropDownButton();
     this.tbSearch      = new System.Windows.Forms.TextBox();
     this.panelFind     = new System.Windows.Forms.Panel();
     this.tbFind        = new System.Windows.Forms.TextBox();
     this.btnLexer      = new System.Windows.Forms.Label();
     this.tagBox        = new System.Windows.Forms.TextBox();
     this.lbTags        = new System.Windows.Forms.Label();
     this.scEdit        = new ScintillaNET.Scintilla();
     this.lexerMenu     = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.notifyIcon1   = new System.Windows.Forms.NotifyIcon(this.components);
     this.cName         = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.fancyRenderer = new SynNotes.FancyRenderer();
     trayMenu           = new System.Windows.Forms.ContextMenuStrip(this.components);
     trayMenu.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tree)).BeginInit();
     this.statusBar.SuspendLayout();
     this.panelFind.SuspendLayout();
     this.SuspendLayout();
     //
     // trayMenu
     //
     trayMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.openToolStripMenuItem1,
         this.toolStripMenuItem2,
         this.exitToolStripMenuItem1
     });
     trayMenu.Name = "contextMenuTray";
     trayMenu.Size = new System.Drawing.Size(104, 54);
     //
     // openToolStripMenuItem1
     //
     this.openToolStripMenuItem1.Name   = "openToolStripMenuItem1";
     this.openToolStripMenuItem1.Size   = new System.Drawing.Size(103, 22);
     this.openToolStripMenuItem1.Text   = "Show";
     this.openToolStripMenuItem1.Click += new System.EventHandler(this.showToolStripMenuItem1_Click);
     //
     // toolStripMenuItem2
     //
     this.toolStripMenuItem2.Name = "toolStripMenuItem2";
     this.toolStripMenuItem2.Size = new System.Drawing.Size(100, 6);
     //
     // exitToolStripMenuItem1
     //
     this.exitToolStripMenuItem1.Name   = "exitToolStripMenuItem1";
     this.exitToolStripMenuItem1.Size   = new System.Drawing.Size(103, 22);
     this.exitToolStripMenuItem1.Text   = "Exit";
     this.exitToolStripMenuItem1.Click += new System.EventHandler(this.exitToolStripMenuItem1_Click);
     //
     // splitContainer1
     //
     this.splitContainer1.BackColor  = System.Drawing.Color.Gainsboro;
     this.splitContainer1.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
     this.splitContainer1.Location   = new System.Drawing.Point(0, 0);
     this.splitContainer1.Margin     = new System.Windows.Forms.Padding(0);
     this.splitContainer1.Name       = "splitContainer1";
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.pictureBox1);
     this.splitContainer1.Panel1.Controls.Add(this.tree);
     this.splitContainer1.Panel1.Controls.Add(this.statusBar);
     this.splitContainer1.Panel1.Controls.Add(this.tbSearch);
     this.splitContainer1.Panel1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.tagBox);
     this.splitContainer1.Panel2.Controls.Add(this.panelFind);
     this.splitContainer1.Panel2.Controls.Add(this.btnLexer);
     this.splitContainer1.Panel2.Controls.Add(this.scEdit);
     this.splitContainer1.Panel2.Controls.Add(this.lbTags);
     this.splitContainer1.Panel2.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.splitContainer1.Size             = new System.Drawing.Size(1014, 646);
     this.splitContainer1.SplitterDistance = 227;
     this.splitContainer1.TabIndex         = 0;
     this.splitContainer1.TabStop          = false;
     //
     // pictureBox1
     //
     this.pictureBox1.BackColor    = System.Drawing.SystemColors.Window;
     this.pictureBox1.ErrorImage   = null;
     this.pictureBox1.Image        = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.InitialImage = null;
     this.pictureBox1.Location     = new System.Drawing.Point(0, 0);
     this.pictureBox1.Margin       = new System.Windows.Forms.Padding(0, 0, 0, 4);
     this.pictureBox1.Name         = "pictureBox1";
     this.pictureBox1.Padding      = new System.Windows.Forms.Padding(0, 1, 0, 0);
     this.pictureBox1.Size         = new System.Drawing.Size(16, 19);
     this.pictureBox1.TabIndex     = 5;
     this.pictureBox1.TabStop      = false;
     //
     // tree
     //
     this.tree.AllColumns.Add(this.cName);
     this.tree.AllColumns.Add(this.cSort);
     this.tree.AlternateRowBackColor = System.Drawing.SystemColors.Window;
     this.tree.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.tree.BackColor            = System.Drawing.SystemColors.Control;
     this.tree.BorderStyle          = System.Windows.Forms.BorderStyle.None;
     this.tree.CellEditActivation   = BrightIdeasSoftware.ObjectListView.CellEditActivateMode.SingleClick;
     this.tree.CellEditUseWholeCell = false;
     this.tree.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.cName
     });
     this.tree.ContextMenuStrip        = this.treeMenu;
     this.tree.CopySelectionOnControlC = false;
     this.tree.EmptyListMsg            = "";
     this.tree.Font                            = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.tree.FullRowSelect                   = true;
     this.tree.HeaderStyle                     = System.Windows.Forms.ColumnHeaderStyle.None;
     this.tree.HideSelection                   = false;
     this.tree.HighlightBackgroundColor        = System.Drawing.SystemColors.Highlight;
     this.tree.HighlightForegroundColor        = System.Drawing.SystemColors.HighlightText;
     this.tree.IsSearchOnSortColumn            = false;
     this.tree.Location                        = new System.Drawing.Point(0, 23);
     this.tree.Margin                          = new System.Windows.Forms.Padding(0);
     this.tree.Name                            = "tree";
     this.tree.SelectAllOnControlA             = false;
     this.tree.SelectedBackColor               = System.Drawing.SystemColors.Highlight;
     this.tree.SelectedForeColor               = System.Drawing.SystemColors.HighlightText;
     this.tree.ShowGroups                      = false;
     this.tree.ShowHeaderInAllViews            = false;
     this.tree.Size                            = new System.Drawing.Size(227, 602);
     this.tree.SmallImageList                  = this.imageList1;
     this.tree.TabIndex                        = 3;
     this.tree.TabStop                         = false;
     this.tree.UnfocusedSelectedBackColor      = System.Drawing.SystemColors.Highlight;
     this.tree.UnfocusedSelectedForeColor      = System.Drawing.SystemColors.HighlightText;
     this.tree.UseAlternatingBackColors        = true;
     this.tree.UseCompatibleStateImageBehavior = false;
     this.tree.UseNotifyPropertyChanged        = true;
     this.tree.UseOverlays                     = false;
     this.tree.View                            = System.Windows.Forms.View.Details;
     this.tree.VirtualMode                     = true;
     this.tree.CellEditFinishing              += new BrightIdeasSoftware.CellEditEventHandler(this.tree_CellEditFinishing);
     this.tree.CellEditStarting               += new BrightIdeasSoftware.CellEditEventHandler(this.tree_CellEditStarting);
     this.tree.CellEditValidating             += new BrightIdeasSoftware.CellEditEventHandler(this.tree_CellEditValidating);
     this.tree.CellClick                      += new System.EventHandler <BrightIdeasSoftware.CellClickEventArgs>(this.tree_CellClick);
     this.tree.CellRightClick                 += new System.EventHandler <BrightIdeasSoftware.CellRightClickEventArgs>(this.tree_CellRightClick);
     this.tree.ModelCanDrop                   += new System.EventHandler <BrightIdeasSoftware.ModelDropEventArgs>(this.tree_ModelCanDrop);
     this.tree.ModelDropped                   += new System.EventHandler <BrightIdeasSoftware.ModelDropEventArgs>(this.tree_ModelDropped);
     this.tree.SelectionChanged               += new System.EventHandler(this.tree_SelectionChanged);
     this.tree.ItemActivate                   += new System.EventHandler(this.tree_ItemActivate);
     this.tree.ItemDrag                       += new System.Windows.Forms.ItemDragEventHandler(this.tree_ItemDrag);
     this.tree.MouseClick                     += new System.Windows.Forms.MouseEventHandler(this.tree_MouseClick);
     //
     // cSort
     //
     this.cSort.AspectName             = "";
     this.cSort.AutoCompleteEditor     = false;
     this.cSort.AutoCompleteEditorMode = System.Windows.Forms.AutoCompleteMode.None;
     this.cSort.DisplayIndex           = 2;
     this.cSort.IsEditable             = false;
     this.cSort.IsVisible    = false;
     this.cSort.Searchable   = false;
     this.cSort.Text         = "Sort";
     this.cSort.UseFiltering = false;
     this.cSort.Width        = 30;
     //
     // treeMenu
     //
     this.treeMenu.Name = "treeMenu";
     this.treeMenu.Size = new System.Drawing.Size(61, 4);
     //
     // imageList1
     //
     this.imageList1.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "add");
     this.imageList1.Images.SetKeyName(1, "settings");
     this.imageList1.Images.SetKeyName(2, "open.png");
     this.imageList1.Images.SetKeyName(3, "close");
     this.imageList1.Images.SetKeyName(4, "all.png");
     this.imageList1.Images.SetKeyName(5, "trash.png");
     this.imageList1.Images.SetKeyName(6, "pinsmall.png");
     this.imageList1.Images.SetKeyName(7, "pinsmall_i.png");
     this.imageList1.Images.SetKeyName(8, "open_i.png");
     this.imageList1.Images.SetKeyName(9, "close_i.png");
     //
     // statusBar
     //
     this.statusBar.BackColor  = System.Drawing.SystemColors.Control;
     this.statusBar.GripMargin = new System.Windows.Forms.Padding(0);
     this.statusBar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.btnAdd,
         this.btnPin,
         this.statusText,
         this.btnSync
     });
     this.statusBar.Location         = new System.Drawing.Point(0, 624);
     this.statusBar.Name             = "statusBar";
     this.statusBar.RenderMode       = System.Windows.Forms.ToolStripRenderMode.Professional;
     this.statusBar.ShowItemToolTips = true;
     this.statusBar.Size             = new System.Drawing.Size(227, 22);
     this.statusBar.SizingGrip       = false;
     this.statusBar.TabIndex         = 3;
     //
     // btnAdd
     //
     this.btnAdd.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btnAdd.Image                 = ((System.Drawing.Image)(resources.GetObject("btnAdd.Image")));
     this.btnAdd.ImageScaling          = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btnAdd.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnAdd.Margin                = new System.Windows.Forms.Padding(0, 1, 0, 0);
     this.btnAdd.MergeIndex            = -2;
     this.btnAdd.Name              = "btnAdd";
     this.btnAdd.Overflow          = System.Windows.Forms.ToolStripItemOverflow.Never;
     this.btnAdd.ShowDropDownArrow = false;
     this.btnAdd.Size              = new System.Drawing.Size(20, 21);
     this.btnAdd.Text              = "Add Note (F7)";
     this.btnAdd.Click            += new System.EventHandler(this.btnAdd_ButtonClick);
     //
     // btnPin
     //
     this.btnPin.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btnPin.Image                 = ((System.Drawing.Image)(resources.GetObject("btnPin.Image")));
     this.btnPin.ImageScaling          = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btnPin.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnPin.Margin                = new System.Windows.Forms.Padding(0, 1, 0, 0);
     this.btnPin.Name = "btnPin";
     this.btnPin.ShowDropDownArrow = false;
     this.btnPin.Size   = new System.Drawing.Size(20, 21);
     this.btnPin.Text   = "Pin Note";
     this.btnPin.Click += new System.EventHandler(this.btnPin_Click);
     //
     // statusText
     //
     this.statusText.Name   = "statusText";
     this.statusText.Size   = new System.Drawing.Size(152, 17);
     this.statusText.Spring = true;
     //
     // btnSync
     //
     this.btnSync.Alignment          = System.Windows.Forms.ToolStripItemAlignment.Right;
     this.btnSync.BackColor          = System.Drawing.SystemColors.Control;
     this.btnSync.DisplayStyle       = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btnSync.DoubleClickEnabled = true;
     this.btnSync.Image                 = ((System.Drawing.Image)(resources.GetObject("btnSync.Image")));
     this.btnSync.ImageScaling          = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btnSync.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnSync.Margin                = new System.Windows.Forms.Padding(0, 1, 0, 0);
     this.btnSync.Name = "btnSync";
     this.btnSync.ShowDropDownArrow = false;
     this.btnSync.Size       = new System.Drawing.Size(20, 21);
     this.btnSync.Text       = "Sync (RightClick for Settings)";
     this.btnSync.MouseDown += new System.Windows.Forms.MouseEventHandler(this.btnSync_MouseDown);
     //
     // tbSearch
     //
     this.tbSearch.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.tbSearch.BackColor    = System.Drawing.SystemColors.Window;
     this.tbSearch.BorderStyle  = System.Windows.Forms.BorderStyle.None;
     this.tbSearch.Font         = new System.Drawing.Font("Calibri", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.tbSearch.ForeColor    = System.Drawing.SystemColors.GrayText;
     this.tbSearch.Location     = new System.Drawing.Point(16, 0);
     this.tbSearch.Margin       = new System.Windows.Forms.Padding(0, 0, 0, 4);
     this.tbSearch.MaxLength    = 255;
     this.tbSearch.Name         = "tbSearch";
     this.tbSearch.Size         = new System.Drawing.Size(211, 19);
     this.tbSearch.TabIndex     = 1;
     this.tbSearch.Tag          = "";
     this.tbSearch.Text         = "Search Notes";
     this.tbSearch.TextChanged += new System.EventHandler(this.cbSearch_TextChanged);
     this.tbSearch.Enter       += new System.EventHandler(this.cbSearch_Enter);
     this.tbSearch.KeyDown     += new System.Windows.Forms.KeyEventHandler(this.cbSearch_KeyDown);
     this.tbSearch.Leave       += new System.EventHandler(this.cbSearch_Leave);
     //
     // panelFind
     //
     this.panelFind.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.panelFind.AutoSize = true;
     this.panelFind.Controls.Add(this.tbFind);
     this.panelFind.Location = new System.Drawing.Point(567, 0);
     this.panelFind.Name     = "panelFind";
     this.panelFind.Padding  = new System.Windows.Forms.Padding(3, 0, 0, 3);
     this.panelFind.Size     = new System.Drawing.Size(200, 27);
     this.panelFind.TabIndex = 3;
     this.panelFind.Visible  = false;
     //
     // tbFind
     //
     this.tbFind.BorderStyle  = System.Windows.Forms.BorderStyle.None;
     this.tbFind.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.tbFind.Font         = new System.Drawing.Font("Calibri", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.tbFind.Location     = new System.Drawing.Point(3, 0);
     this.tbFind.Name         = "tbFind";
     this.tbFind.Size         = new System.Drawing.Size(197, 19);
     this.tbFind.TabIndex     = 0;
     this.tbFind.TextChanged += new System.EventHandler(this.tbFind_TextChanged);
     //
     // btnLexer
     //
     this.btnLexer.Anchor      = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnLexer.BackColor   = System.Drawing.SystemColors.Window;
     this.btnLexer.Cursor      = System.Windows.Forms.Cursors.Hand;
     this.btnLexer.Location    = new System.Drawing.Point(683, 623);
     this.btnLexer.Margin      = new System.Windows.Forms.Padding(0);
     this.btnLexer.Name        = "btnLexer";
     this.btnLexer.Size        = new System.Drawing.Size(100, 24);
     this.btnLexer.TabIndex    = 0;
     this.btnLexer.Text        = "Lexer";
     this.btnLexer.TextAlign   = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnLexer.UseMnemonic = false;
     this.btnLexer.MouseClick += new System.Windows.Forms.MouseEventHandler(this.btnLexer_Click);
     //
     // tagBox
     //
     this.tagBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                | System.Windows.Forms.AnchorStyles.Right)));
     this.tagBox.AutoCompleteMode   = System.Windows.Forms.AutoCompleteMode.Suggest;
     this.tagBox.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.CustomSource;
     this.tagBox.BackColor          = System.Drawing.SystemColors.Window;
     this.tagBox.BorderStyle        = System.Windows.Forms.BorderStyle.None;
     this.tagBox.Location           = new System.Drawing.Point(37, 628);
     this.tagBox.Margin             = new System.Windows.Forms.Padding(0);
     this.tagBox.Name         = "tagBox";
     this.tagBox.Size         = new System.Drawing.Size(646, 13);
     this.tagBox.TabIndex     = 1;
     this.tagBox.TabStop      = false;
     this.tagBox.TextChanged += new System.EventHandler(this.tagBox_TextChanged);
     this.tagBox.Enter       += new System.EventHandler(this.tagBox_Enter);
     this.tagBox.KeyDown     += new System.Windows.Forms.KeyEventHandler(this.tagBox_KeyDown);
     //
     // lbTags
     //
     this.lbTags.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                | System.Windows.Forms.AnchorStyles.Right)));
     this.lbTags.BackColor = System.Drawing.SystemColors.Window;
     this.lbTags.Location  = new System.Drawing.Point(0, 624);
     this.lbTags.Margin    = new System.Windows.Forms.Padding(0);
     this.lbTags.Name      = "lbTags";
     this.lbTags.Padding   = new System.Windows.Forms.Padding(0, 0, 0, 2);
     this.lbTags.Size      = new System.Drawing.Size(683, 23);
     this.lbTags.TabIndex  = 2;
     this.lbTags.Text      = "Tags:";
     this.lbTags.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // scEdit
     //
     this.scEdit.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.scEdit.AutoCDropRestOfWord = true;
     this.scEdit.AutoCIgnoreCase     = true;
     this.scEdit.AutoCMaxHeight      = 10;
     this.scEdit.AutomaticFold       = ((ScintillaNET.AutomaticFold)(((ScintillaNET.AutomaticFold.Show | ScintillaNET.AutomaticFold.Click)
                                                                      | ScintillaNET.AutomaticFold.Change)));
     this.scEdit.BorderStyle        = System.Windows.Forms.BorderStyle.None;
     this.scEdit.CaretLineBackColor = System.Drawing.Color.LightYellow;
     this.scEdit.CaretLineVisible   = true;
     this.scEdit.CaretWidth         = 2;
     this.scEdit.IndentationGuides  = ScintillaNET.IndentView.Real;
     this.scEdit.Location           = new System.Drawing.Point(0, 0);
     this.scEdit.Margin             = new System.Windows.Forms.Padding(0);
     this.scEdit.MouseSelectionRectangularSwitch = true;
     this.scEdit.Name            = "scEdit";
     this.scEdit.Size            = new System.Drawing.Size(783, 624);
     this.scEdit.TabIndex        = 2;
     this.scEdit.TabWidth        = 2;
     this.scEdit.UseTabs         = false;
     this.scEdit.WrapIndentMode  = ScintillaNET.WrapIndentMode.Indent;
     this.scEdit.WrapMode        = ScintillaNET.WrapMode.Word;
     this.scEdit.WrapVisualFlags = ScintillaNET.WrapVisualFlags.End;
     this.scEdit.SavePointLeft  += new System.EventHandler <System.EventArgs>(this.scEdit_SavePointLeft);
     this.scEdit.UpdateUI       += new System.EventHandler <ScintillaNET.UpdateUIEventArgs>(this.scEdit_UpdateUI);
     //
     // lexerMenu
     //
     this.lexerMenu.Name            = "lexerMenu";
     this.lexerMenu.ShowCheckMargin = true;
     this.lexerMenu.ShowImageMargin = false;
     this.lexerMenu.Size            = new System.Drawing.Size(61, 4);
     this.lexerMenu.Opening        += new System.ComponentModel.CancelEventHandler(this.lexerMenu_Opening);
     //
     // notifyIcon1
     //
     this.notifyIcon1.ContextMenuStrip = trayMenu;
     this.notifyIcon1.Icon             = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon")));
     this.notifyIcon1.Text             = "SynNotes";
     this.notifyIcon1.Visible          = true;
     this.notifyIcon1.Click           += new System.EventHandler(this.notifyIcon1_Click);
     //
     // cName
     //
     this.cName.AspectName             = "Name";
     this.cName.AutoCompleteEditor     = false;
     this.cName.AutoCompleteEditorMode = System.Windows.Forms.AutoCompleteMode.None;
     this.cName.FillsFreeSpace         = true;
     this.cName.Renderer = this.fancyRenderer;
     this.cName.Text     = "Name";
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Dpi;
     this.ClientSize          = new System.Drawing.Size(1014, 646);
     this.Controls.Add(this.splitContainer1);
     this.Icon         = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview   = true;
     this.Name         = "Form1";
     this.Text         = "SynNotes";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
     this.FormClosed  += new System.Windows.Forms.FormClosedEventHandler(this.Form1_FormClosed);
     this.Shown       += new System.EventHandler(this.Form1_Shown);
     this.KeyDown     += new System.Windows.Forms.KeyEventHandler(this.Form1_KeyDown);
     this.Move        += new System.EventHandler(this.Form1_Move);
     this.Resize      += new System.EventHandler(this.Form1_Resize);
     trayMenu.ResumeLayout(false);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel1.PerformLayout();
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.Panel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
     this.splitContainer1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tree)).EndInit();
     this.statusBar.ResumeLayout(false);
     this.statusBar.PerformLayout();
     this.panelFind.ResumeLayout(false);
     this.panelFind.PerformLayout();
     this.ResumeLayout(false);
 }
Esempio n. 10
0
 /// <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.Windows.Forms.StatusStrip               statusStrip1;
     System.Windows.Forms.ContextMenuStrip          cmsItems;
     System.Windows.Forms.ToolStripMenuItem         tsmiClearItems;
     System.Windows.Forms.ToolStripSeparator        toolStripSeparator1;
     System.Windows.Forms.ToolStripMenuItem         tsmiRemoveItem;
     System.Windows.Forms.ToolStrip                 tsMainStrip;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
     System.Windows.Forms.ToolStripSeparator        toolStripSeparator2;
     this.tsslCommittingChanges     = new System.Windows.Forms.ToolStripStatusLabel();
     this.tsslLoadingFiles          = new System.Windows.Forms.ToolStripStatusLabel();
     this.tsslDragDropInfo          = new System.Windows.Forms.ToolStripStatusLabel();
     this.tsmiCommitSelected        = new System.Windows.Forms.ToolStripMenuItem();
     this.tsmiRevertChanges         = new System.Windows.Forms.ToolStripMenuItem();
     this.tsddbRenameFiles          = new System.Windows.Forms.ToolStripDropDownButton();
     this.tsddbRenameFolders        = new System.Windows.Forms.ToolStripDropDownButton();
     this.tsddbTagsFromName         = new System.Windows.Forms.ToolStripDropDownButton();
     this.tsmiTitleFromFileName     = new System.Windows.Forms.ToolStripMenuItem();
     this.tsmiVideoNameFromFileName = new System.Windows.Forms.ToolStripMenuItem();
     this.tsmiFixTitleAndName       = new System.Windows.Forms.ToolStripMenuItem();
     this.tsmiClearTitle            = new System.Windows.Forms.ToolStripMenuItem();
     this.tsmiClearVideoName        = new System.Windows.Forms.ToolStripMenuItem();
     this.tsmiSwapTitleAndName      = new System.Windows.Forms.ToolStripMenuItem();
     this.tsmiRecoverSpaces         = new System.Windows.Forms.ToolStripMenuItem();
     this.tsmiRemoveBracketContent  = new System.Windows.Forms.ToolStripMenuItem();
     this.dgvResults = new System.Windows.Forms.DataGridView();
     this.tsmiAutoFillFromFileName = new System.Windows.Forms.ToolStripMenuItem();
     statusStrip1        = new System.Windows.Forms.StatusStrip();
     cmsItems            = new System.Windows.Forms.ContextMenuStrip(this.components);
     tsmiClearItems      = new System.Windows.Forms.ToolStripMenuItem();
     toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     tsmiRemoveItem      = new System.Windows.Forms.ToolStripMenuItem();
     tsMainStrip         = new System.Windows.Forms.ToolStrip();
     toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     statusStrip1.SuspendLayout();
     cmsItems.SuspendLayout();
     tsMainStrip.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvResults)).BeginInit();
     this.SuspendLayout();
     //
     // statusStrip1
     //
     statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.tsslCommittingChanges,
         this.tsslLoadingFiles,
         this.tsslDragDropInfo
     });
     statusStrip1.Location = new System.Drawing.Point(0, 405);
     statusStrip1.Name     = "statusStrip1";
     statusStrip1.Size     = new System.Drawing.Size(818, 22);
     statusStrip1.TabIndex = 1;
     statusStrip1.Text     = "statusStrip1";
     //
     // tsslCommittingChanges
     //
     this.tsslCommittingChanges.Image   = global::MassMediaEdit.Properties.Resources._16x11_Loading_Animation;
     this.tsslCommittingChanges.Name    = "tsslCommittingChanges";
     this.tsslCommittingChanges.Size    = new System.Drawing.Size(118, 17);
     this.tsslCommittingChanges.Text    = "Writing changes...";
     this.tsslCommittingChanges.Visible = false;
     //
     // tsslLoadingFiles
     //
     this.tsslLoadingFiles.Image   = global::MassMediaEdit.Properties.Resources._16x11_Loading_Animation;
     this.tsslLoadingFiles.Name    = "tsslLoadingFiles";
     this.tsslLoadingFiles.Size    = new System.Drawing.Size(99, 17);
     this.tsslLoadingFiles.Text    = "Loading files...";
     this.tsslLoadingFiles.Visible = false;
     //
     // tsslDragDropInfo
     //
     this.tsslDragDropInfo.Name = "tsslDragDropInfo";
     this.tsslDragDropInfo.Size = new System.Drawing.Size(229, 17);
     this.tsslDragDropInfo.Text = "Please Drag && Drop Files into this Window";
     //
     // cmsItems
     //
     cmsItems.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         tsmiClearItems,
         toolStripSeparator1,
         tsmiRemoveItem,
         this.tsmiCommitSelected,
         this.tsmiRevertChanges
     });
     cmsItems.Name     = "cmsItems";
     cmsItems.Size     = new System.Drawing.Size(119, 98);
     cmsItems.Opening += new System.ComponentModel.CancelEventHandler(this.cmsItems_Opening);
     //
     // tsmiClearItems
     //
     tsmiClearItems.Image  = global::MassMediaEdit.Properties.Resources.Clear;
     tsmiClearItems.Name   = "tsmiClearItems";
     tsmiClearItems.Size   = new System.Drawing.Size(118, 22);
     tsmiClearItems.Text   = "Clear";
     tsmiClearItems.Click += new System.EventHandler(this.tsmiClearItems_Click);
     //
     // toolStripSeparator1
     //
     toolStripSeparator1.Name = "toolStripSeparator1";
     toolStripSeparator1.Size = new System.Drawing.Size(115, 6);
     //
     // tsmiRemoveItem
     //
     tsmiRemoveItem.Image  = global::MassMediaEdit.Properties.Resources._24x24_Delete__2_;
     tsmiRemoveItem.Name   = "tsmiRemoveItem";
     tsmiRemoveItem.Size   = new System.Drawing.Size(118, 22);
     tsmiRemoveItem.Text   = "Remove";
     tsmiRemoveItem.Click += new System.EventHandler(this.tsmiRemoveItem_Click);
     //
     // tsmiCommitSelected
     //
     this.tsmiCommitSelected.Image  = global::MassMediaEdit.Properties.Resources._16x16_Blue_Disk;
     this.tsmiCommitSelected.Name   = "tsmiCommitSelected";
     this.tsmiCommitSelected.Size   = new System.Drawing.Size(118, 22);
     this.tsmiCommitSelected.Text   = "Commit";
     this.tsmiCommitSelected.Click += new System.EventHandler(this.tsmiCommitSelected_Click);
     //
     // tsmiRevertChanges
     //
     this.tsmiRevertChanges.Image  = global::MassMediaEdit.Properties.Resources._16x16_Undo;
     this.tsmiRevertChanges.Name   = "tsmiRevertChanges";
     this.tsmiRevertChanges.Size   = new System.Drawing.Size(118, 22);
     this.tsmiRevertChanges.Text   = "Revert";
     this.tsmiRevertChanges.Click += new System.EventHandler(this.tsmiRevertChanges_Click);
     //
     // tsMainStrip
     //
     tsMainStrip.GripStyle        = System.Windows.Forms.ToolStripGripStyle.Hidden;
     tsMainStrip.ImageScalingSize = new System.Drawing.Size(24, 24);
     tsMainStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.tsddbRenameFiles,
         this.tsddbRenameFolders,
         this.tsddbTagsFromName
     });
     tsMainStrip.Location = new System.Drawing.Point(0, 0);
     tsMainStrip.Name     = "tsMainStrip";
     tsMainStrip.Size     = new System.Drawing.Size(818, 31);
     tsMainStrip.TabIndex = 2;
     tsMainStrip.Text     = "toolStrip1";
     //
     // tsddbRenameFiles
     //
     this.tsddbRenameFiles.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.tsddbRenameFiles.Enabled               = false;
     this.tsddbRenameFiles.Image                 = ((System.Drawing.Image)(resources.GetObject("tsddbRenameFiles.Image")));
     this.tsddbRenameFiles.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsddbRenameFiles.Name   = "tsddbRenameFiles";
     this.tsddbRenameFiles.Size   = new System.Drawing.Size(37, 28);
     this.tsddbRenameFiles.Text   = "Rename Files";
     this.tsddbRenameFiles.Click += new System.EventHandler(this.tsddbRenameFiles_Click);
     //
     // tsddbRenameFolders
     //
     this.tsddbRenameFolders.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.tsddbRenameFolders.Enabled               = false;
     this.tsddbRenameFolders.Image                 = global::MassMediaEdit.Properties.Resources._24x24_Rename_Folders;
     this.tsddbRenameFolders.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsddbRenameFolders.Name   = "tsddbRenameFolders";
     this.tsddbRenameFolders.Size   = new System.Drawing.Size(37, 28);
     this.tsddbRenameFolders.Text   = "Rename Source Folder";
     this.tsddbRenameFolders.Click += new System.EventHandler(this.tsddbRenameFolders_Click);
     //
     // tsddbTagsFromName
     //
     this.tsddbTagsFromName.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.tsddbTagsFromName.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.tsmiTitleFromFileName,
         this.tsmiVideoNameFromFileName,
         this.tsmiFixTitleAndName,
         this.tsmiClearTitle,
         this.tsmiClearVideoName,
         this.tsmiSwapTitleAndName,
         this.tsmiRecoverSpaces,
         this.tsmiRemoveBracketContent,
         toolStripSeparator2,
         this.tsmiAutoFillFromFileName
     });
     this.tsddbTagsFromName.Enabled = false;
     this.tsddbTagsFromName.Image   = global::MassMediaEdit.Properties.Resources._24x24_Tags_From_Data;
     this.tsddbTagsFromName.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsddbTagsFromName.Name   = "tsddbTagsFromName";
     this.tsddbTagsFromName.Size   = new System.Drawing.Size(37, 28);
     this.tsddbTagsFromName.Text   = "Tags From Name";
     this.tsddbTagsFromName.Click += new System.EventHandler(this.tsddbTagsFromName_Click);
     //
     // tsmiTitleFromFileName
     //
     this.tsmiTitleFromFileName.Name   = "tsmiTitleFromFileName";
     this.tsmiTitleFromFileName.Size   = new System.Drawing.Size(205, 22);
     this.tsmiTitleFromFileName.Text   = "Title From Filename";
     this.tsmiTitleFromFileName.Click += new System.EventHandler(this.tsmiTitleFromFilename_Click);
     //
     // tsmiVideoNameFromFileName
     //
     this.tsmiVideoNameFromFileName.Name   = "tsmiVideoNameFromFileName";
     this.tsmiVideoNameFromFileName.Size   = new System.Drawing.Size(205, 22);
     this.tsmiVideoNameFromFileName.Text   = "Name From Filename";
     this.tsmiVideoNameFromFileName.Click += new System.EventHandler(this.tsmiVideoNameFromFileName_Click);
     //
     // tsmiFixTitleAndName
     //
     this.tsmiFixTitleAndName.Name   = "tsmiFixTitleAndName";
     this.tsmiFixTitleAndName.Size   = new System.Drawing.Size(205, 22);
     this.tsmiFixTitleAndName.Text   = "Fix Title/Name";
     this.tsmiFixTitleAndName.Click += new System.EventHandler(this.tsmiFixTitleAndName_Click);
     //
     // tsmiClearTitle
     //
     this.tsmiClearTitle.Name   = "tsmiClearTitle";
     this.tsmiClearTitle.Size   = new System.Drawing.Size(205, 22);
     this.tsmiClearTitle.Text   = "Clear Title";
     this.tsmiClearTitle.Click += new System.EventHandler(this.tsmiClearTitle_Click);
     //
     // tsmiClearVideoName
     //
     this.tsmiClearVideoName.Name   = "tsmiClearVideoName";
     this.tsmiClearVideoName.Size   = new System.Drawing.Size(205, 22);
     this.tsmiClearVideoName.Text   = "Clear Name";
     this.tsmiClearVideoName.Click += new System.EventHandler(this.tsmiClearVideoName_Click);
     //
     // tsmiSwapTitleAndName
     //
     this.tsmiSwapTitleAndName.Name   = "tsmiSwapTitleAndName";
     this.tsmiSwapTitleAndName.Size   = new System.Drawing.Size(205, 22);
     this.tsmiSwapTitleAndName.Text   = "Swap Title && Name";
     this.tsmiSwapTitleAndName.Click += new System.EventHandler(this.tsmiSwapTitleAndName_Click);
     //
     // tsmiRecoverSpaces
     //
     this.tsmiRecoverSpaces.Name   = "tsmiRecoverSpaces";
     this.tsmiRecoverSpaces.Size   = new System.Drawing.Size(205, 22);
     this.tsmiRecoverSpaces.Text   = "Recover Spaces";
     this.tsmiRecoverSpaces.Click += new System.EventHandler(this.tsmiRecoverSpaces_Click);
     //
     // tsmiRemoveBracketContent
     //
     this.tsmiRemoveBracketContent.Name   = "tsmiRemoveBracketContent";
     this.tsmiRemoveBracketContent.Size   = new System.Drawing.Size(205, 22);
     this.tsmiRemoveBracketContent.Text   = "Remove Bracket Content";
     this.tsmiRemoveBracketContent.Click += new System.EventHandler(this.tsmiRemoveBracketContent_Click);
     //
     // dgvResults
     //
     this.dgvResults.AllowDrop                   = true;
     this.dgvResults.AllowUserToAddRows          = false;
     this.dgvResults.AllowUserToDeleteRows       = false;
     this.dgvResults.AllowUserToResizeRows       = false;
     this.dgvResults.AutoSizeColumnsMode         = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dgvResults.BackgroundColor             = System.Drawing.SystemColors.Window;
     this.dgvResults.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgvResults.ContextMenuStrip            = cmsItems;
     this.dgvResults.Dock              = System.Windows.Forms.DockStyle.Fill;
     this.dgvResults.Location          = new System.Drawing.Point(0, 31);
     this.dgvResults.Name              = "dgvResults";
     this.dgvResults.RowHeadersVisible = false;
     this.dgvResults.SelectionMode     = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dgvResults.Size              = new System.Drawing.Size(818, 374);
     this.dgvResults.TabIndex          = 0;
     this.dgvResults.SelectionChanged += new System.EventHandler(this.dgvResults_SelectionChanged);
     this.dgvResults.DragDrop         += new System.Windows.Forms.DragEventHandler(this.dgvResults_DragDrop);
     this.dgvResults.DragEnter        += new System.Windows.Forms.DragEventHandler(this.dgvResults_DragEnter);
     //
     // toolStripSeparator2
     //
     toolStripSeparator2.Name = "toolStripSeparator2";
     toolStripSeparator2.Size = new System.Drawing.Size(202, 6);
     //
     // tsmiAutoFillFromFileName
     //
     this.tsmiAutoFillFromFileName.Name   = "tsmiAutoFillFromFileName";
     this.tsmiAutoFillFromFileName.Size   = new System.Drawing.Size(205, 22);
     this.tsmiAutoFillFromFileName.Text   = "Auto-Fill from Filename";
     this.tsmiAutoFillFromFileName.Click += new System.EventHandler(this.tsmiAutoFillFromFileName_Click);
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(818, 427);
     this.Controls.Add(this.dgvResults);
     this.Controls.Add(tsMainStrip);
     this.Controls.Add(statusStrip1);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "MainForm";
     this.Text = "MainForm";
     statusStrip1.ResumeLayout(false);
     statusStrip1.PerformLayout();
     cmsItems.ResumeLayout(false);
     tsMainStrip.ResumeLayout(false);
     tsMainStrip.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvResults)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 11
0
 /// <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.Windows.Forms.ContextMenuStrip          contextMenuStrip1;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormLocalDbList));
     this.toolStripMenuItem1           = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem2           = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem3           = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem5           = new System.Windows.Forms.ToolStripMenuItem();
     this.作者邹慧刚ToolStripMenuItem       = new System.Windows.Forms.ToolStripMenuItem();
     this.qqcomToolStripMenuItem       = new System.Windows.Forms.ToolStripMenuItem();
     this.wwwanooccomToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.时间20171020ToolStripMenuItem  = new System.Windows.Forms.ToolStripMenuItem();
     this.listView1     = new System.Windows.Forms.ListView();
     this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader5 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader6 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.imageList1    = new System.Windows.Forms.ImageList(this.components);
     contextMenuStrip1  = new System.Windows.Forms.ContextMenuStrip(this.components);
     contextMenuStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // contextMenuStrip1
     //
     contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripMenuItem1,
         this.toolStripMenuItem2,
         this.toolStripMenuItem3
     });
     contextMenuStrip1.Name = "contextMenuStrip1";
     contextMenuStrip1.Size = new System.Drawing.Size(125, 70);
     //
     // toolStripMenuItem1
     //
     this.toolStripMenuItem1.Name   = "toolStripMenuItem1";
     this.toolStripMenuItem1.Size   = new System.Drawing.Size(124, 22);
     this.toolStripMenuItem1.Text   = "删除指纹";
     this.toolStripMenuItem1.Click += new System.EventHandler(this.toolStripMenuItem1_Click);
     //
     // toolStripMenuItem2
     //
     this.toolStripMenuItem2.Name   = "toolStripMenuItem2";
     this.toolStripMenuItem2.Size   = new System.Drawing.Size(124, 22);
     this.toolStripMenuItem2.Text   = "复制指纹";
     this.toolStripMenuItem2.Click += new System.EventHandler(this.toolStripMenuItem2_Click);
     //
     // toolStripMenuItem3
     //
     this.toolStripMenuItem3.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripMenuItem5,
         this.作者邹慧刚ToolStripMenuItem,
         this.qqcomToolStripMenuItem,
         this.wwwanooccomToolStripMenuItem,
         this.时间20171020ToolStripMenuItem
     });
     this.toolStripMenuItem3.Name = "toolStripMenuItem3";
     this.toolStripMenuItem3.Size = new System.Drawing.Size(124, 22);
     this.toolStripMenuItem3.Text = "软件版本";
     //
     // toolStripMenuItem5
     //
     this.toolStripMenuItem5.Name = "toolStripMenuItem5";
     this.toolStripMenuItem5.Size = new System.Drawing.Size(222, 22);
     this.toolStripMenuItem5.Text = "版本:1.0.0";
     //
     // 作者邹慧刚ToolStripMenuItem
     //
     this.作者邹慧刚ToolStripMenuItem.Name = "作者邹慧刚ToolStripMenuItem";
     this.作者邹慧刚ToolStripMenuItem.Size = new System.Drawing.Size(222, 22);
     this.作者邹慧刚ToolStripMenuItem.Text = "作者:邹慧刚";
     //
     // qqcomToolStripMenuItem
     //
     this.qqcomToolStripMenuItem.Name = "qqcomToolStripMenuItem";
     this.qqcomToolStripMenuItem.Size = new System.Drawing.Size(222, 22);
     this.qqcomToolStripMenuItem.Text = "邮箱:[email protected]";
     //
     // wwwanooccomToolStripMenuItem
     //
     this.wwwanooccomToolStripMenuItem.Name = "wwwanooccomToolStripMenuItem";
     this.wwwanooccomToolStripMenuItem.Size = new System.Drawing.Size(222, 22);
     this.wwwanooccomToolStripMenuItem.Text = "网址:www.anooc.com";
     //
     // 时间20171020ToolStripMenuItem
     //
     this.时间20171020ToolStripMenuItem.Name = "时间20171020ToolStripMenuItem";
     this.时间20171020ToolStripMenuItem.Size = new System.Drawing.Size(222, 22);
     this.时间20171020ToolStripMenuItem.Text = "时间:2017-10-20";
     //
     // listView1
     //
     this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeader1,
         this.columnHeader2,
         this.columnHeader3,
         this.columnHeader4,
         this.columnHeader5,
         this.columnHeader6
     });
     this.listView1.ContextMenuStrip = contextMenuStrip1;
     this.listView1.FullRowSelect    = true;
     this.listView1.GridLines        = true;
     this.listView1.LabelEdit        = true;
     this.listView1.Location         = new System.Drawing.Point(12, 21);
     this.listView1.Name             = "listView1";
     this.listView1.Size             = new System.Drawing.Size(690, 303);
     this.listView1.SmallImageList   = this.imageList1;
     this.listView1.TabIndex         = 0;
     this.listView1.UseCompatibleStateImageBehavior = false;
     this.listView1.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.listView_MouseDoubleClick);
     //
     // columnHeader1
     //
     this.columnHeader1.Text = "指纹ID";
     //
     // columnHeader2
     //
     this.columnHeader2.Text = "用户ID";
     //
     // columnHeader3
     //
     this.columnHeader3.Text = "手指编号";
     //
     // columnHeader4
     //
     this.columnHeader4.Text = "template_10";
     //
     // columnHeader5
     //
     this.columnHeader5.Text = "template_9";
     //
     // columnHeader6
     //
     this.columnHeader6.Text = "操作";
     //
     // imageList1
     //
     this.imageList1.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "zhg.jpg");
     //
     // FormLocalDbList
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(714, 336);
     this.Controls.Add(this.listView1);
     this.Name  = "FormLocalDbList";
     this.Text  = "本地指纹库";
     this.Load += new System.EventHandler(this.Form3_Load);
     contextMenuStrip1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Esempio n. 12
0
		/// <summary>
		/// デザイナー サポートに必要なメソッドです。このメソッドの内容を
		/// コード エディターで変更しないでください。
		/// </summary>
		private void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			System.Windows.Forms.ContextMenuStrip conOption;
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Viewer));
			Comical.Controls.ToolStripRadioMenuItem itmOriginalSize;
			this.itmFitToWindow = new Comical.Controls.ToolStripRadioMenuItem();
			this.preMain = new Comical.Controls.Previewer();
			conOption = new System.Windows.Forms.ContextMenuStrip(this.components);
			itmOriginalSize = new Comical.Controls.ToolStripRadioMenuItem();
			conOption.SuspendLayout();
			this.SuspendLayout();
			// 
			// conOption
			// 
			conOption.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.itmFitToWindow,
            itmOriginalSize});
			conOption.Name = "conOption";
			resources.ApplyResources(conOption, "conOption");
			// 
			// itmFitToWindow
			// 
			this.itmFitToWindow.Checked = true;
			this.itmFitToWindow.CheckOnClick = true;
			this.itmFitToWindow.CheckState = System.Windows.Forms.CheckState.Checked;
			this.itmFitToWindow.Group = 0;
			this.itmFitToWindow.Name = "itmFitToWindow";
			resources.ApplyResources(this.itmFitToWindow, "itmFitToWindow");
			this.itmFitToWindow.CheckedChanged += new System.EventHandler(this.itmFitToWindow_CheckedChanged);
			// 
			// itmOriginalSize
			// 
			itmOriginalSize.CheckOnClick = true;
			itmOriginalSize.Group = 0;
			itmOriginalSize.Name = "itmOriginalSize";
			resources.ApplyResources(itmOriginalSize, "itmOriginalSize");
			itmOriginalSize.CheckedChanged += new System.EventHandler(this.itmFitToWindow_CheckedChanged);
			// 
			// preMain
			// 
			resources.ApplyResources(this.preMain, "preMain");
			this.preMain.BackColor = System.Drawing.Color.Transparent;
			this.preMain.Description = null;
			this.preMain.Font = System.Drawing.SystemFonts.MessageBoxFont;
			this.preMain.ForeColor = System.Drawing.Color.White;
			this.preMain.Image = null;
			this.preMain.Name = "preMain";
			this.preMain.StretchMode = Comical.Controls.PreviewerStretchMode.Uniform;
			// 
			// Viewer
			// 
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
			resources.ApplyResources(this, "$this");
			this.BackColor = System.Drawing.Color.Black;
			this.ContextMenuStrip = conOption;
			this.Controls.Add(this.preMain);
			this.DockAreas = ((WeifenLuo.WinFormsUI.Docking.DockAreas)((WeifenLuo.WinFormsUI.Docking.DockAreas.Float | WeifenLuo.WinFormsUI.Docking.DockAreas.Document)));
			this.MinimizeBox = false;
			this.Name = "Viewer";
			this.ShowHint = WeifenLuo.WinFormsUI.Docking.DockState.Document;
			this.ShowInTaskbar = false;
			this.TabPageContextMenuStrip = conOption;
			conOption.ResumeLayout(false);
			this.ResumeLayout(false);

		}
Esempio n. 13
0
		/// <summary>
		/// デザイナー サポートに必要なメソッドです。このメソッドの内容を
		/// コード エディターで変更しないでください。
		/// </summary>
		private void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			System.Windows.Forms.ContextMenuStrip conBookmark;
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(BookmarksView));
			this.itmSelectTarget = new System.Windows.Forms.ToolStripMenuItem();
			this.sepBookmark1 = new System.Windows.Forms.ToolStripSeparator();
			this.itmCreateNew = new System.Windows.Forms.ToolStripMenuItem();
			this.itmInsertAbove = new System.Windows.Forms.ToolStripMenuItem();
			this.itmInsertBelow = new System.Windows.Forms.ToolStripMenuItem();
			this.sepBookmark2 = new System.Windows.Forms.ToolStripSeparator();
			this.itmDelete = new System.Windows.Forms.ToolStripMenuItem();
			this.dgvBookmarks = new Comical.Controls.DraggableDataGridView();
			this.clmName = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.clmTarget = new System.Windows.Forms.DataGridViewTextBoxColumn();
			conBookmark = new System.Windows.Forms.ContextMenuStrip(this.components);
			conBookmark.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.dgvBookmarks)).BeginInit();
			this.SuspendLayout();
			// 
			// conBookmark
			// 
			resources.ApplyResources(conBookmark, "conBookmark");
			conBookmark.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.itmSelectTarget,
            this.sepBookmark1,
            this.itmCreateNew,
            this.itmInsertAbove,
            this.itmInsertBelow,
            this.sepBookmark2,
            this.itmDelete});
			conBookmark.Name = "conBookmark";
			// 
			// itmSelectTarget
			// 
			resources.ApplyResources(this.itmSelectTarget, "itmSelectTarget");
			this.itmSelectTarget.Name = "itmSelectTarget";
			this.itmSelectTarget.Click += new System.EventHandler(this.itmSelectTarget_Click);
			// 
			// sepBookmark1
			// 
			resources.ApplyResources(this.sepBookmark1, "sepBookmark1");
			this.sepBookmark1.Name = "sepBookmark1";
			// 
			// itmCreateNew
			// 
			resources.ApplyResources(this.itmCreateNew, "itmCreateNew");
			this.itmCreateNew.Name = "itmCreateNew";
			this.itmCreateNew.Click += new System.EventHandler(this.itmAdd_Click);
			// 
			// itmInsertAbove
			// 
			resources.ApplyResources(this.itmInsertAbove, "itmInsertAbove");
			this.itmInsertAbove.Name = "itmInsertAbove";
			this.itmInsertAbove.Click += new System.EventHandler(this.itmInsertAbove_Click);
			// 
			// itmInsertBelow
			// 
			resources.ApplyResources(this.itmInsertBelow, "itmInsertBelow");
			this.itmInsertBelow.Name = "itmInsertBelow";
			this.itmInsertBelow.Click += new System.EventHandler(this.itmInsertBelow_Click);
			// 
			// sepBookmark2
			// 
			resources.ApplyResources(this.sepBookmark2, "sepBookmark2");
			this.sepBookmark2.Name = "sepBookmark2";
			// 
			// itmDelete
			// 
			resources.ApplyResources(this.itmDelete, "itmDelete");
			this.itmDelete.Name = "itmDelete";
			this.itmDelete.Click += new System.EventHandler(this.itmRemove_Click);
			// 
			// dgvBookmarks
			// 
			resources.ApplyResources(this.dgvBookmarks, "dgvBookmarks");
			this.dgvBookmarks.AllowDrop = true;
			this.dgvBookmarks.AllowUserToAddRows = false;
			this.dgvBookmarks.AllowUserToMoveRows = true;
			this.dgvBookmarks.AllowUserToResizeColumns = false;
			this.dgvBookmarks.AllowUserToResizeRows = false;
			this.dgvBookmarks.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
			this.dgvBookmarks.BackgroundColor = System.Drawing.SystemColors.Control;
			this.dgvBookmarks.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.dgvBookmarks.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.None;
			this.dgvBookmarks.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.None;
			this.dgvBookmarks.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
			this.dgvBookmarks.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.clmName,
            this.clmTarget});
			this.dgvBookmarks.ContextMenuStrip = conBookmark;
			this.dgvBookmarks.EditMode = System.Windows.Forms.DataGridViewEditMode.EditOnF2;
			this.dgvBookmarks.GridColor = System.Drawing.SystemColors.Control;
			this.dgvBookmarks.Name = "dgvBookmarks";
			this.dgvBookmarks.RowHeadersVisible = false;
			this.dgvBookmarks.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
			this.dgvBookmarks.RowTemplate.Height = 21;
			this.dgvBookmarks.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
			this.dgvBookmarks.ShowCellToolTips = false;
			this.dgvBookmarks.VirtualMode = true;
			this.dgvBookmarks.RowMoving += new System.EventHandler<Comical.Controls.RowMovingEventArgs>(this.dgvBookmarks_RowMoving);
			this.dgvBookmarks.QueryActualDestination += new System.EventHandler<Comical.Controls.QueryActualDestinationEventArgs>(this.dgvBookmarks_QueryActualDestination);
			this.dgvBookmarks.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvBookmarks_CellDoubleClick);
			this.dgvBookmarks.CellErrorTextNeeded += new System.Windows.Forms.DataGridViewCellErrorTextNeededEventHandler(this.dgvBookmarks_CellErrorTextNeeded);
			this.dgvBookmarks.CellValueNeeded += new System.Windows.Forms.DataGridViewCellValueEventHandler(this.dgvBookmarks_CellValueNeeded);
			this.dgvBookmarks.CellValuePushed += new System.Windows.Forms.DataGridViewCellValueEventHandler(this.dgvBookmarks_CellValuePushed);
			this.dgvBookmarks.SelectionChanged += new System.EventHandler(this.dgvBookmarks_SelectionChanged);
			this.dgvBookmarks.UserDeletedRow += new System.Windows.Forms.DataGridViewRowEventHandler(this.dgvBookmarks_UserDeletedRow);
			this.dgvBookmarks.UserDeletingRow += new System.Windows.Forms.DataGridViewRowCancelEventHandler(this.dgvBookmarks_UserDeletingRow);
			// 
			// clmName
			// 
			this.clmName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
			this.clmName.DataPropertyName = "Name";
			resources.ApplyResources(this.clmName, "clmName");
			this.clmName.Name = "clmName";
			this.clmName.Resizable = System.Windows.Forms.DataGridViewTriState.False;
			this.clmName.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
			// 
			// clmTarget
			// 
			this.clmTarget.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
			this.clmTarget.DataPropertyName = "Target";
			resources.ApplyResources(this.clmTarget, "clmTarget");
			this.clmTarget.Name = "clmTarget";
			this.clmTarget.Resizable = System.Windows.Forms.DataGridViewTriState.False;
			this.clmTarget.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
			// 
			// BookmarksView
			// 
			resources.ApplyResources(this, "$this");
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
			this.Controls.Add(this.dgvBookmarks);
			this.HideOnClose = true;
			this.Name = "BookmarksView";
			conBookmark.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.dgvBookmarks)).EndInit();
			this.ResumeLayout(false);

		}
Esempio n. 14
0
 /// <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.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
     BrightIdeasSoftware.OLVColumn         Benutzerspalte;
     System.Windows.Forms.Label            label1;
     BrightIdeasSoftware.OLVColumn         KontoSpalte;
     BrightIdeasSoftware.OLVColumn         KontostandSpalteKonten;
     System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
     BrightIdeasSoftware.OLVColumn         AbrechnungSpalte;
     System.Windows.Forms.TableLayoutPanel tableLayoutPanel3;
     this.Benutzerliste  = new BrightIdeasSoftware.ObjectListView();
     this.GuthabenSpalte = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.Kontenliste    = new BrightIdeasSoftware.ObjectListView();
     this.neuesKontoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.tableLayoutPanel2           = new System.Windows.Forms.TableLayoutPanel();
     this.Abrechnungsliste            = new BrightIdeasSoftware.ObjectListView();
     this.StatusSpalte        = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.BenutzerKnopf       = new System.Windows.Forms.Button();
     this.ProduktKnopf        = new System.Windows.Forms.Button();
     this.EinkäufeKnopf       = new System.Windows.Forms.Button();
     this.NeueAbrechnungKnopf = new System.Windows.Forms.Button();
     tableLayoutPanel1        = new System.Windows.Forms.TableLayoutPanel();
     Benutzerspalte           = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     label1                 = new System.Windows.Forms.Label();
     KontoSpalte            = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     KontostandSpalteKonten = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     contextMenuStrip1      = new System.Windows.Forms.ContextMenuStrip(this.components);
     AbrechnungSpalte       = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     tableLayoutPanel3      = new System.Windows.Forms.TableLayoutPanel();
     tableLayoutPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Benutzerliste)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Kontenliste)).BeginInit();
     contextMenuStrip1.SuspendLayout();
     this.tableLayoutPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Abrechnungsliste)).BeginInit();
     tableLayoutPanel3.SuspendLayout();
     this.SuspendLayout();
     //
     // tableLayoutPanel1
     //
     tableLayoutPanel1.ColumnCount = 2;
     tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     tableLayoutPanel1.Controls.Add(this.Benutzerliste, 0, 1);
     tableLayoutPanel1.Controls.Add(label1, 0, 0);
     tableLayoutPanel1.Controls.Add(this.Kontenliste, 1, 0);
     tableLayoutPanel1.Controls.Add(this.tableLayoutPanel2, 1, 1);
     tableLayoutPanel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     tableLayoutPanel1.Name     = "tableLayoutPanel1";
     tableLayoutPanel1.RowCount = 2;
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 15.4013F));
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 84.5987F));
     tableLayoutPanel1.Size     = new System.Drawing.Size(484, 461);
     tableLayoutPanel1.TabIndex = 0;
     //
     // Benutzerliste
     //
     this.Benutzerliste.AllColumns.Add(Benutzerspalte);
     this.Benutzerliste.AllColumns.Add(this.GuthabenSpalte);
     this.Benutzerliste.AlternateRowBackColor = System.Drawing.SystemColors.ButtonFace;
     this.Benutzerliste.CellEditUseWholeCell  = false;
     this.Benutzerliste.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         Benutzerspalte,
         this.GuthabenSpalte
     });
     this.Benutzerliste.Cursor                             = System.Windows.Forms.Cursors.Default;
     this.Benutzerliste.Dock                               = System.Windows.Forms.DockStyle.Fill;
     this.Benutzerliste.FullRowSelect                      = true;
     this.Benutzerliste.HeaderStyle                        = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.Benutzerliste.Location                           = new System.Drawing.Point(10, 80);
     this.Benutzerliste.Margin                             = new System.Windows.Forms.Padding(10);
     this.Benutzerliste.MinimumSize                        = new System.Drawing.Size(100, 50);
     this.Benutzerliste.MultiSelect                        = false;
     this.Benutzerliste.Name                               = "Benutzerliste";
     this.Benutzerliste.SelectColumnsOnRightClick          = false;
     this.Benutzerliste.SelectColumnsOnRightClickBehaviour = BrightIdeasSoftware.ObjectListView.ColumnSelectBehaviour.None;
     this.Benutzerliste.ShowGroups                         = false;
     this.Benutzerliste.ShowSortIndicators                 = false;
     this.Benutzerliste.Size                               = new System.Drawing.Size(222, 371);
     this.Benutzerliste.Sorting                            = System.Windows.Forms.SortOrder.Ascending;
     this.Benutzerliste.TabIndex                           = 4;
     this.Benutzerliste.UseAlternatingBackColors           = true;
     this.Benutzerliste.UseCellFormatEvents                = true;
     this.Benutzerliste.UseCompatibleStateImageBehavior    = false;
     this.Benutzerliste.UseFiltering                       = true;
     this.Benutzerliste.View                               = System.Windows.Forms.View.Details;
     this.Benutzerliste.FormatCell                        += new System.EventHandler <BrightIdeasSoftware.FormatCellEventArgs>(this.Benutzerliste_FormatCell);
     this.Benutzerliste.ItemActivate                      += new System.EventHandler(this.Benutzerliste_ItemActivate);
     //
     // Benutzerspalte
     //
     Benutzerspalte.AspectName     = "Anzeigename";
     Benutzerspalte.FillsFreeSpace = true;
     Benutzerspalte.Text           = "Benutzer";
     Benutzerspalte.Width          = 100;
     //
     // GuthabenSpalte
     //
     this.GuthabenSpalte.AspectName           = "Guthaben";
     this.GuthabenSpalte.AspectToStringFormat = "{0:C}";
     this.GuthabenSpalte.Text      = "Guthaben";
     this.GuthabenSpalte.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.GuthabenSpalte.Width     = 100;
     //
     // label1
     //
     label1.Dock      = System.Windows.Forms.DockStyle.Fill;
     label1.Font      = new System.Drawing.Font("Arial", 20F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     label1.Location  = new System.Drawing.Point(3, 0);
     label1.Name      = "label1";
     label1.Size      = new System.Drawing.Size(236, 70);
     label1.TabIndex  = 1;
     label1.Text      = "Übersicht";
     label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // Kontenliste
     //
     this.Kontenliste.AllColumns.Add(KontoSpalte);
     this.Kontenliste.AllColumns.Add(KontostandSpalteKonten);
     this.Kontenliste.CellEditUseWholeCell = false;
     this.Kontenliste.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         KontoSpalte,
         KontostandSpalteKonten
     });
     this.Kontenliste.ContextMenuStrip                   = contextMenuStrip1;
     this.Kontenliste.Cursor                             = System.Windows.Forms.Cursors.Default;
     this.Kontenliste.Dock                               = System.Windows.Forms.DockStyle.Fill;
     this.Kontenliste.EmptyListMsg                       = "Keine Konten angelegt";
     this.Kontenliste.FullRowSelect                      = true;
     this.Kontenliste.HeaderStyle                        = System.Windows.Forms.ColumnHeaderStyle.None;
     this.Kontenliste.HeaderUsesThemes                   = true;
     this.Kontenliste.Location                           = new System.Drawing.Point(252, 10);
     this.Kontenliste.Margin                             = new System.Windows.Forms.Padding(10);
     this.Kontenliste.MinimumSize                        = new System.Drawing.Size(210, 50);
     this.Kontenliste.MultiSelect                        = false;
     this.Kontenliste.Name                               = "Kontenliste";
     this.Kontenliste.SelectColumnsOnRightClick          = false;
     this.Kontenliste.SelectColumnsOnRightClickBehaviour = BrightIdeasSoftware.ObjectListView.ColumnSelectBehaviour.None;
     this.Kontenliste.ShowGroups                         = false;
     this.Kontenliste.Size                               = new System.Drawing.Size(222, 50);
     this.Kontenliste.Sorting                            = System.Windows.Forms.SortOrder.Ascending;
     this.Kontenliste.TabIndex                           = 2;
     this.Kontenliste.TabStop                            = false;
     this.Kontenliste.UseCompatibleStateImageBehavior    = false;
     this.Kontenliste.View                               = System.Windows.Forms.View.Details;
     this.Kontenliste.ItemActivate                      += new System.EventHandler(this.Kontenliste_ItemActivate);
     //
     // KontoSpalte
     //
     KontoSpalte.AspectName     = "Name";
     KontoSpalte.FillsFreeSpace = true;
     KontoSpalte.Text           = "Konto";
     KontoSpalte.Width          = 100;
     //
     // KontostandSpalteKonten
     //
     KontostandSpalteKonten.AspectName           = "Kontostand";
     KontostandSpalteKonten.AspectToStringFormat = "{0:C}";
     KontostandSpalteKonten.ButtonSizing         = BrightIdeasSoftware.OLVColumn.ButtonSizingMode.FixedBounds;
     KontostandSpalteKonten.Text      = "Kontostand";
     KontostandSpalteKonten.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     KontostandSpalteKonten.Width     = 100;
     //
     // contextMenuStrip1
     //
     contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.neuesKontoToolStripMenuItem
     });
     contextMenuStrip1.Name = "contextMenuStrip1";
     contextMenuStrip1.Size = new System.Drawing.Size(143, 26);
     //
     // neuesKontoToolStripMenuItem
     //
     this.neuesKontoToolStripMenuItem.Name   = "neuesKontoToolStripMenuItem";
     this.neuesKontoToolStripMenuItem.Size   = new System.Drawing.Size(142, 22);
     this.neuesKontoToolStripMenuItem.Text   = "Neues Konto";
     this.neuesKontoToolStripMenuItem.Click += new System.EventHandler(this.neuesKontoToolStripMenuItem_Click);
     //
     // tableLayoutPanel2
     //
     this.tableLayoutPanel2.ColumnCount = 1;
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel2.Controls.Add(this.Abrechnungsliste, 0, 0);
     this.tableLayoutPanel2.Controls.Add(tableLayoutPanel3, 0, 1);
     this.tableLayoutPanel2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel2.Location = new System.Drawing.Point(242, 70);
     this.tableLayoutPanel2.Margin   = new System.Windows.Forms.Padding(0);
     this.tableLayoutPanel2.Name     = "tableLayoutPanel2";
     this.tableLayoutPanel2.RowCount = 2;
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel2.Size     = new System.Drawing.Size(242, 391);
     this.tableLayoutPanel2.TabIndex = 3;
     //
     // Abrechnungsliste
     //
     this.Abrechnungsliste.AllColumns.Add(AbrechnungSpalte);
     this.Abrechnungsliste.AllColumns.Add(this.StatusSpalte);
     this.Abrechnungsliste.AlternateRowBackColor = System.Drawing.SystemColors.ButtonFace;
     this.Abrechnungsliste.CellEditUseWholeCell  = false;
     this.Abrechnungsliste.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         AbrechnungSpalte,
         this.StatusSpalte
     });
     this.Abrechnungsliste.Cursor                             = System.Windows.Forms.Cursors.Default;
     this.Abrechnungsliste.Dock                               = System.Windows.Forms.DockStyle.Fill;
     this.Abrechnungsliste.FullRowSelect                      = true;
     this.Abrechnungsliste.HeaderStyle                        = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.Abrechnungsliste.Location                           = new System.Drawing.Point(10, 10);
     this.Abrechnungsliste.Margin                             = new System.Windows.Forms.Padding(10);
     this.Abrechnungsliste.MultiSelect                        = false;
     this.Abrechnungsliste.Name                               = "Abrechnungsliste";
     this.Abrechnungsliste.SelectColumnsOnRightClick          = false;
     this.Abrechnungsliste.SelectColumnsOnRightClickBehaviour = BrightIdeasSoftware.ObjectListView.ColumnSelectBehaviour.None;
     this.Abrechnungsliste.ShowGroups                         = false;
     this.Abrechnungsliste.Size                               = new System.Drawing.Size(222, 175);
     this.Abrechnungsliste.TabIndex                           = 3;
     this.Abrechnungsliste.UseAlternatingBackColors           = true;
     this.Abrechnungsliste.UseCellFormatEvents                = true;
     this.Abrechnungsliste.UseCompatibleStateImageBehavior    = false;
     this.Abrechnungsliste.View                               = System.Windows.Forms.View.Details;
     this.Abrechnungsliste.FormatCell                        += new System.EventHandler <BrightIdeasSoftware.FormatCellEventArgs>(this.Abrechnungsliste_FormatCell);
     this.Abrechnungsliste.ItemActivate                      += new System.EventHandler(this.Abrechnungsliste_ItemActivate);
     //
     // AbrechnungSpalte
     //
     AbrechnungSpalte.AspectName     = "Name";
     AbrechnungSpalte.FillsFreeSpace = true;
     AbrechnungSpalte.Text           = "Letzte Abrechnungen";
     //
     // StatusSpalte
     //
     this.StatusSpalte.AspectName = "Gebucht";
     this.StatusSpalte.Text       = "Status";
     this.StatusSpalte.Width      = 120;
     //
     // tableLayoutPanel3
     //
     tableLayoutPanel3.ColumnCount = 1;
     tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     tableLayoutPanel3.Controls.Add(this.BenutzerKnopf, 0, 0);
     tableLayoutPanel3.Controls.Add(this.ProduktKnopf, 0, 1);
     tableLayoutPanel3.Controls.Add(this.EinkäufeKnopf, 0, 2);
     tableLayoutPanel3.Controls.Add(this.NeueAbrechnungKnopf, 0, 3);
     tableLayoutPanel3.Dock     = System.Windows.Forms.DockStyle.Fill;
     tableLayoutPanel3.Location = new System.Drawing.Point(0, 195);
     tableLayoutPanel3.Margin   = new System.Windows.Forms.Padding(0);
     tableLayoutPanel3.Name     = "tableLayoutPanel3";
     tableLayoutPanel3.RowCount = 5;
     tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));
     tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));
     tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));
     tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));
     tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     tableLayoutPanel3.Size     = new System.Drawing.Size(242, 196);
     tableLayoutPanel3.TabIndex = 4;
     //
     // BenutzerKnopf
     //
     this.BenutzerKnopf.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.BenutzerKnopf.Location = new System.Drawing.Point(10, 3);
     this.BenutzerKnopf.Margin   = new System.Windows.Forms.Padding(10, 3, 10, 3);
     this.BenutzerKnopf.Name     = "BenutzerKnopf";
     this.BenutzerKnopf.Size     = new System.Drawing.Size(222, 34);
     this.BenutzerKnopf.TabIndex = 0;
     this.BenutzerKnopf.Text     = "Benutzer Verwalten...";
     this.BenutzerKnopf.UseVisualStyleBackColor = true;
     this.BenutzerKnopf.Click += new System.EventHandler(this.BenutzerKnopf_Click);
     //
     // ProduktKnopf
     //
     this.ProduktKnopf.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.ProduktKnopf.Location = new System.Drawing.Point(10, 43);
     this.ProduktKnopf.Margin   = new System.Windows.Forms.Padding(10, 3, 10, 3);
     this.ProduktKnopf.Name     = "ProduktKnopf";
     this.ProduktKnopf.Size     = new System.Drawing.Size(222, 34);
     this.ProduktKnopf.TabIndex = 1;
     this.ProduktKnopf.Text     = "Produkte Verwalten...";
     this.ProduktKnopf.UseVisualStyleBackColor = true;
     this.ProduktKnopf.Click += new System.EventHandler(this.ProduktKnopf_Click);
     //
     // EinkäufeKnopf
     //
     this.EinkäufeKnopf.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.EinkäufeKnopf.Location = new System.Drawing.Point(10, 83);
     this.EinkäufeKnopf.Margin   = new System.Windows.Forms.Padding(10, 3, 10, 3);
     this.EinkäufeKnopf.Name     = "EinkäufeKnopf";
     this.EinkäufeKnopf.Size     = new System.Drawing.Size(222, 34);
     this.EinkäufeKnopf.TabIndex = 2;
     this.EinkäufeKnopf.Text     = "Einkäufe Verwalten...";
     this.EinkäufeKnopf.UseVisualStyleBackColor = true;
     this.EinkäufeKnopf.Click += new System.EventHandler(this.EinkäufeKnopf_Click);
     //
     // NeueAbrechnungKnopf
     //
     this.NeueAbrechnungKnopf.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.NeueAbrechnungKnopf.Location = new System.Drawing.Point(10, 123);
     this.NeueAbrechnungKnopf.Margin   = new System.Windows.Forms.Padding(10, 3, 10, 3);
     this.NeueAbrechnungKnopf.Name     = "NeueAbrechnungKnopf";
     this.NeueAbrechnungKnopf.Size     = new System.Drawing.Size(222, 34);
     this.NeueAbrechnungKnopf.TabIndex = 3;
     this.NeueAbrechnungKnopf.Text     = "Neue Abrechnung...";
     this.NeueAbrechnungKnopf.UseVisualStyleBackColor = true;
     this.NeueAbrechnungKnopf.Click += new System.EventHandler(this.NeueAbrechnungKnopf_Click);
     //
     // Hauptfenster
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.ClientSize          = new System.Drawing.Size(484, 461);
     this.Controls.Add(tableLayoutPanel1);
     this.MinimumSize  = new System.Drawing.Size(500, 39);
     this.Name         = "Hauptfenster";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Hauptfenster_FormClosing);
     this.Load        += new System.EventHandler(this.Hauptfenster_Load);
     tableLayoutPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.Benutzerliste)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Kontenliste)).EndInit();
     contextMenuStrip1.ResumeLayout(false);
     this.tableLayoutPanel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.Abrechnungsliste)).EndInit();
     tableLayoutPanel3.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Esempio n. 15
0
        /// <summary>
        /// デザイナ サポートに必要なメソッドです。このメソッドの内容を
        /// コード エディタで変更しないでください。
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.Windows.Forms.ToolStripMenuItem 内容を更新するToolStripMenuItem;
            System.Windows.Forms.ToolStripMenuItem このノード以下ToolStripMenuItem;
            System.Windows.Forms.ToolStripMenuItem 削除ToolStripMenuItem;
            System.Windows.Forms.ContextMenuStrip contextMenuStrip2;
            System.Windows.Forms.ToolStripMenuItem 表示位置へ移るToolStripMenuItem;
            System.Windows.Forms.ToolStripButton 上へtoolStripButton3;
            System.Windows.Forms.ToolStripSeparator toolStripSeparator8;
            System.Windows.Forms.ToolStripSeparator toolStripSeparator6;
            System.Windows.Forms.Button Go;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(BrowserForm));
            System.Windows.Forms.MenuStrip menuStrip1;
            System.Windows.Forms.ToolStripButton Back_toolStripButton;
            System.Windows.Forms.ToolStripButton Forward_toolStripButton;
            System.Windows.Forms.ToolStripButton Refresh_toolStripButton;
            System.Windows.Forms.ToolStripSeparator toolStripSeparator20;
            System.Windows.Forms.ToolStripButton Abort_toolStripButton;
            System.Windows.Forms.ToolStripButton GoHome_toolStripButton;
            System.Windows.Forms.ToolStripSeparator toolStripSeparator19;
            System.Windows.Forms.ToolStripMenuItem File_ToolStripMenuItem;
            System.Windows.Forms.ToolStripMenuItem NewPage_ToolStripMenuItem;
            System.Windows.Forms.ToolStripMenuItem Open_ToolStripMenuItem;
            System.Windows.Forms.ToolStripSeparator toolStripSeparator11;
            System.Windows.Forms.ToolStripMenuItem SaveAs_ToolStripMenuItem;
            System.Windows.Forms.ToolStripSeparator toolStripSeparator12;
            System.Windows.Forms.ToolStripMenuItem Print_ToolStripMenuItem;
            System.Windows.Forms.ToolStripMenuItem PrintPreview_ToolStripMenuItem;
            System.Windows.Forms.ToolStripSeparator toolStripSeparator13;
            System.Windows.Forms.ToolStripMenuItem ShowPropertoes_ToolStripMenuItem;
            System.Windows.Forms.ToolStripSeparator toolStripSeparator22;
            System.Windows.Forms.ToolStripMenuItem Exit_ToolStripMenuItem;
            System.Windows.Forms.ToolStripMenuItem View_toolStripMenuItem;
            System.Windows.Forms.ToolStripMenuItem Tree_ToolStripMenuItem;
            System.Windows.Forms.ToolStripMenuItem Properties_ToolStripMenuItem;
            System.Windows.Forms.ToolStripMenuItem Edit_ToolStripMenuItem;
            System.Windows.Forms.ToolStripMenuItem Undo_ToolStripMenuItem;
            System.Windows.Forms.ToolStripMenuItem Redo_ToolStripMenuItem;
            System.Windows.Forms.ToolStripSeparator toolStripSeparator14;
            System.Windows.Forms.ToolStripMenuItem Cut_ToolStripMenuItem;
            System.Windows.Forms.ToolStripMenuItem Delete_ToolStripMenuItem;
            System.Windows.Forms.ToolStripMenuItem Copy_ToolStripMenuItem;
            System.Windows.Forms.ToolStripMenuItem Paste_ToolStripMenuItem;
            System.Windows.Forms.ToolStripSeparator toolStripSeparator15;
            System.Windows.Forms.ToolStripMenuItem SelectAll_ToolStripMenuItem;
            System.Windows.Forms.ToolStripMenuItem FontStyle_ToolStripMenuItem;
            System.Windows.Forms.ToolStripMenuItem SetFont_ToolStripMenuItem;
            System.Windows.Forms.ToolStripMenuItem 文字装飾ToolStripMenuItem;
            System.Windows.Forms.ToolStripMenuItem 位置揃えToolStripMenuItem;
            System.Windows.Forms.Splitter bottom_splitter1;
            System.Windows.Forms.Splitter upper_splitter;
            System.Windows.Forms.Splitter vertical_splitter;
            this.ツリーでの位置ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.検索ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.iDToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.tagNameToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator();
            this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.statusStrip1 = new System.Windows.Forms.StatusStrip();
            this.propertyGrid1 = new System.Windows.Forms.PropertyGrid();
            this.webBrowser1 = new System.Windows.Forms.WebBrowser();
            this.address_textBox1 = new System.Windows.Forms.TextBox();
            this.fontDialog1 = new System.Windows.Forms.FontDialog();
            this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
            this.HTML_Icon = new System.Windows.Forms.ImageList(this.components);
            this.treeViewEx = new MyBrowser.HTML.TreeViewEx();
            this.StatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
            内容を更新するToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            このノード以下ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            削除ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            contextMenuStrip2 = new System.Windows.Forms.ContextMenuStrip(this.components);
            表示位置へ移るToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            上へtoolStripButton3 = new System.Windows.Forms.ToolStripButton();
            toolStripSeparator8 = new System.Windows.Forms.ToolStripSeparator();
            toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
            Go = new System.Windows.Forms.Button();
            menuStrip1 = new System.Windows.Forms.MenuStrip();
            Back_toolStripButton = new System.Windows.Forms.ToolStripButton();
            Forward_toolStripButton = new System.Windows.Forms.ToolStripButton();
            Refresh_toolStripButton = new System.Windows.Forms.ToolStripButton();
            toolStripSeparator20 = new System.Windows.Forms.ToolStripSeparator();
            Abort_toolStripButton = new System.Windows.Forms.ToolStripButton();
            GoHome_toolStripButton = new System.Windows.Forms.ToolStripButton();
            toolStripSeparator19 = new System.Windows.Forms.ToolStripSeparator();
            File_ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            NewPage_ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            Open_ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            toolStripSeparator11 = new System.Windows.Forms.ToolStripSeparator();
            SaveAs_ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            toolStripSeparator12 = new System.Windows.Forms.ToolStripSeparator();
            Print_ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            PrintPreview_ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            toolStripSeparator13 = new System.Windows.Forms.ToolStripSeparator();
            ShowPropertoes_ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            toolStripSeparator22 = new System.Windows.Forms.ToolStripSeparator();
            Exit_ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            View_toolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            Tree_ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            Properties_ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            Edit_ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            Undo_ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            Redo_ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            toolStripSeparator14 = new System.Windows.Forms.ToolStripSeparator();
            Cut_ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            Delete_ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            Copy_ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            Paste_ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            toolStripSeparator15 = new System.Windows.Forms.ToolStripSeparator();
            SelectAll_ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            FontStyle_ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            SetFont_ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            文字装飾ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            位置揃えToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            bottom_splitter1 = new System.Windows.Forms.Splitter();
            upper_splitter = new System.Windows.Forms.Splitter();
            vertical_splitter = new System.Windows.Forms.Splitter();
            contextMenuStrip2.SuspendLayout();
            menuStrip1.SuspendLayout();
            this.contextMenuStrip1.SuspendLayout();
            this.statusStrip1.SuspendLayout();
            this.tableLayoutPanel1.SuspendLayout();
            this.SuspendLayout();
            // 
            // 内容を更新するToolStripMenuItem
            // 
            内容を更新するToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            このノード以下ToolStripMenuItem,
            削除ToolStripMenuItem});
            内容を更新するToolStripMenuItem.Name = "内容を更新するToolStripMenuItem";
            内容を更新するToolStripMenuItem.Size = new System.Drawing.Size(160, 22);
            内容を更新するToolStripMenuItem.Text = "内容を更新する";
            内容を更新するToolStripMenuItem.Click += new System.EventHandler(this.Reload_Click);
            // 
            // このノード以下ToolStripMenuItem
            // 
            このノード以下ToolStripMenuItem.Name = "このノード以下ToolStripMenuItem";
            このノード以下ToolStripMenuItem.Size = new System.Drawing.Size(160, 22);
            このノード以下ToolStripMenuItem.Text = "このノード以下";
            このノード以下ToolStripMenuItem.Visible = false;
            // 
            // 削除ToolStripMenuItem
            // 
            削除ToolStripMenuItem.Name = "削除ToolStripMenuItem";
            削除ToolStripMenuItem.Size = new System.Drawing.Size(160, 22);
            削除ToolStripMenuItem.Text = "削除";
            削除ToolStripMenuItem.Visible = false;
            // 
            // contextMenuStrip2
            // 
            contextMenuStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            表示位置へ移るToolStripMenuItem,
            this.ツリーでの位置ToolStripMenuItem});
            contextMenuStrip2.Name = "contextMenuStrip1";
            contextMenuStrip2.Size = new System.Drawing.Size(161, 48);
            // 
            // 表示位置へ移るToolStripMenuItem
            // 
            表示位置へ移るToolStripMenuItem.Name = "表示位置へ移るToolStripMenuItem";
            表示位置へ移るToolStripMenuItem.Size = new System.Drawing.Size(160, 22);
            表示位置へ移るToolStripMenuItem.Text = "表示位置へ移る";
            表示位置へ移るToolStripMenuItem.Click += new System.EventHandler(this.MoveTo_Click);
            // 
            // ツリーでの位置ToolStripMenuItem
            // 
            this.ツリーでの位置ToolStripMenuItem.Name = "ツリーでの位置ToolStripMenuItem";
            this.ツリーでの位置ToolStripMenuItem.Size = new System.Drawing.Size(160, 22);
            this.ツリーでの位置ToolStripMenuItem.Text = "ツリーでの位置";
            // 
            // 上へtoolStripButton3
            // 
            上へtoolStripButton3.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            上へtoolStripButton3.ImageTransparentColor = System.Drawing.Color.Magenta;
            上へtoolStripButton3.Name = "上へtoolStripButton3";
            上へtoolStripButton3.Size = new System.Drawing.Size(23, 22);
            上へtoolStripButton3.Text = "上へ";
            上へtoolStripButton3.Visible = false;
            // 
            // toolStripSeparator8
            // 
            toolStripSeparator8.Name = "toolStripSeparator8";
            toolStripSeparator8.Size = new System.Drawing.Size(6, 25);
            // 
            // toolStripSeparator6
            // 
            toolStripSeparator6.Name = "toolStripSeparator6";
            toolStripSeparator6.Size = new System.Drawing.Size(6, 25);
            // 
            // Go
            // 
            Go.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            Go.Dock = System.Windows.Forms.DockStyle.Fill;
            Go.FlatAppearance.BorderSize = 0;
            Go.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
            Go.Image = ((System.Drawing.Image)(resources.GetObject("Go.Image")));
            Go.Location = new System.Drawing.Point(753, 0);
            Go.Margin = new System.Windows.Forms.Padding(0);
            Go.Name = "Go";
            Go.Size = new System.Drawing.Size(19, 19);
            Go.TabIndex = 11;
            Go.UseVisualStyleBackColor = true;
            Go.Click += new System.EventHandler(this.Go_Click);
            // 
            // menuStrip1
            // 
            menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            Back_toolStripButton,
            Forward_toolStripButton,
            Refresh_toolStripButton,
            toolStripSeparator20,
            Abort_toolStripButton,
            GoHome_toolStripButton,
            toolStripSeparator19,
            File_ToolStripMenuItem,
            View_toolStripMenuItem,
            Edit_ToolStripMenuItem,
            FontStyle_ToolStripMenuItem,
            this.検索ToolStripMenuItem});
            menuStrip1.Location = new System.Drawing.Point(0, 0);
            menuStrip1.Name = "menuStrip1";
            menuStrip1.Size = new System.Drawing.Size(772, 27);
            menuStrip1.TabIndex = 13;
            menuStrip1.Text = "menuStrip1";
            // 
            // Back_toolStripButton
            // 
            Back_toolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            Back_toolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("Back_toolStripButton.Image")));
            Back_toolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
            Back_toolStripButton.Name = "Back_toolStripButton";
            Back_toolStripButton.Size = new System.Drawing.Size(23, 20);
            Back_toolStripButton.Text = "戻る";
            Back_toolStripButton.Click += new System.EventHandler(this.GoBack_Click);
            // 
            // Forward_toolStripButton
            // 
            Forward_toolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            Forward_toolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("Forward_toolStripButton.Image")));
            Forward_toolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
            Forward_toolStripButton.Name = "Forward_toolStripButton";
            Forward_toolStripButton.Size = new System.Drawing.Size(23, 20);
            Forward_toolStripButton.Text = "進む";
            Forward_toolStripButton.Click += new System.EventHandler(this.Forward_Click);
            // 
            // Refresh_toolStripButton
            // 
            Refresh_toolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            Refresh_toolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("Refresh_toolStripButton.Image")));
            Refresh_toolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
            Refresh_toolStripButton.Name = "Refresh_toolStripButton";
            Refresh_toolStripButton.Size = new System.Drawing.Size(23, 20);
            Refresh_toolStripButton.Text = "更新";
            Refresh_toolStripButton.Click += new System.EventHandler(this.Refresh_Click);
            // 
            // toolStripSeparator20
            // 
            toolStripSeparator20.Name = "toolStripSeparator20";
            toolStripSeparator20.Size = new System.Drawing.Size(6, 23);
            // 
            // Abort_toolStripButton
            // 
            Abort_toolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            Abort_toolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("Abort_toolStripButton.Image")));
            Abort_toolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
            Abort_toolStripButton.Name = "Abort_toolStripButton";
            Abort_toolStripButton.Size = new System.Drawing.Size(23, 20);
            Abort_toolStripButton.Text = "中止";
            Abort_toolStripButton.Click += new System.EventHandler(this.Abort_Click);
            // 
            // GoHome_toolStripButton
            // 
            GoHome_toolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            GoHome_toolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("GoHome_toolStripButton.Image")));
            GoHome_toolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
            GoHome_toolStripButton.Name = "GoHome_toolStripButton";
            GoHome_toolStripButton.Size = new System.Drawing.Size(23, 20);
            GoHome_toolStripButton.Text = "ホーム";
            GoHome_toolStripButton.Click += new System.EventHandler(this.GoHome_Click);
            // 
            // toolStripSeparator19
            // 
            toolStripSeparator19.Name = "toolStripSeparator19";
            toolStripSeparator19.Size = new System.Drawing.Size(6, 23);
            // 
            // File_ToolStripMenuItem
            // 
            File_ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            NewPage_ToolStripMenuItem,
            Open_ToolStripMenuItem,
            toolStripSeparator11,
            SaveAs_ToolStripMenuItem,
            toolStripSeparator12,
            Print_ToolStripMenuItem,
            PrintPreview_ToolStripMenuItem,
            toolStripSeparator13,
            ShowPropertoes_ToolStripMenuItem,
            toolStripSeparator22,
            Exit_ToolStripMenuItem});
            File_ToolStripMenuItem.Name = "File_ToolStripMenuItem";
            File_ToolStripMenuItem.Size = new System.Drawing.Size(68, 23);
            File_ToolStripMenuItem.Text = "ファイル";
            // 
            // NewPage_ToolStripMenuItem
            // 
            NewPage_ToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("NewPage_ToolStripMenuItem.Image")));
            NewPage_ToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
            NewPage_ToolStripMenuItem.Name = "NewPage_ToolStripMenuItem";
            NewPage_ToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N)));
            NewPage_ToolStripMenuItem.Size = new System.Drawing.Size(219, 22);
            NewPage_ToolStripMenuItem.Text = "新規作成";
            NewPage_ToolStripMenuItem.Click += new System.EventHandler(this.NewPage_Click);
            // 
            // Open_ToolStripMenuItem
            // 
            Open_ToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("Open_ToolStripMenuItem.Image")));
            Open_ToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
            Open_ToolStripMenuItem.Name = "Open_ToolStripMenuItem";
            Open_ToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O)));
            Open_ToolStripMenuItem.Size = new System.Drawing.Size(219, 22);
            Open_ToolStripMenuItem.Text = "開く";
            Open_ToolStripMenuItem.Visible = false;
            // 
            // toolStripSeparator11
            // 
            toolStripSeparator11.Name = "toolStripSeparator11";
            toolStripSeparator11.Size = new System.Drawing.Size(216, 6);
            // 
            // SaveAs_ToolStripMenuItem
            // 
            SaveAs_ToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("SaveAs_ToolStripMenuItem.Image")));
            SaveAs_ToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
            SaveAs_ToolStripMenuItem.Name = "SaveAs_ToolStripMenuItem";
            SaveAs_ToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
            SaveAs_ToolStripMenuItem.Size = new System.Drawing.Size(219, 22);
            SaveAs_ToolStripMenuItem.Text = "名前を付けて保存";
            SaveAs_ToolStripMenuItem.Click += new System.EventHandler(this.SaveAs_Click);
            // 
            // toolStripSeparator12
            // 
            toolStripSeparator12.Name = "toolStripSeparator12";
            toolStripSeparator12.Size = new System.Drawing.Size(216, 6);
            // 
            // Print_ToolStripMenuItem
            // 
            Print_ToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("Print_ToolStripMenuItem.Image")));
            Print_ToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
            Print_ToolStripMenuItem.Name = "Print_ToolStripMenuItem";
            Print_ToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.P)));
            Print_ToolStripMenuItem.Size = new System.Drawing.Size(219, 22);
            Print_ToolStripMenuItem.Text = "印刷";
            Print_ToolStripMenuItem.Click += new System.EventHandler(this.Print_Click);
            // 
            // PrintPreview_ToolStripMenuItem
            // 
            PrintPreview_ToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("PrintPreview_ToolStripMenuItem.Image")));
            PrintPreview_ToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
            PrintPreview_ToolStripMenuItem.Name = "PrintPreview_ToolStripMenuItem";
            PrintPreview_ToolStripMenuItem.Size = new System.Drawing.Size(219, 22);
            PrintPreview_ToolStripMenuItem.Text = "印刷プレビュー";
            PrintPreview_ToolStripMenuItem.Click += new System.EventHandler(this.PrintPreview_Click);
            // 
            // toolStripSeparator13
            // 
            toolStripSeparator13.Name = "toolStripSeparator13";
            toolStripSeparator13.Size = new System.Drawing.Size(216, 6);
            // 
            // ShowPropertoes_ToolStripMenuItem
            // 
            ShowPropertoes_ToolStripMenuItem.Name = "ShowPropertoes_ToolStripMenuItem";
            ShowPropertoes_ToolStripMenuItem.Size = new System.Drawing.Size(219, 22);
            ShowPropertoes_ToolStripMenuItem.Text = "プロパティー";
            ShowPropertoes_ToolStripMenuItem.Click += new System.EventHandler(this.ShowProperties_Click);
            // 
            // toolStripSeparator22
            // 
            toolStripSeparator22.Name = "toolStripSeparator22";
            toolStripSeparator22.Size = new System.Drawing.Size(216, 6);
            // 
            // Exit_ToolStripMenuItem
            // 
            Exit_ToolStripMenuItem.Name = "Exit_ToolStripMenuItem";
            Exit_ToolStripMenuItem.Size = new System.Drawing.Size(219, 22);
            Exit_ToolStripMenuItem.Text = "終了";
            Exit_ToolStripMenuItem.Click += new System.EventHandler(this.Exit_Click);
            // 
            // View_toolStripMenuItem
            // 
            View_toolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            Tree_ToolStripMenuItem,
            Properties_ToolStripMenuItem});
            View_toolStripMenuItem.Name = "View_toolStripMenuItem";
            View_toolStripMenuItem.Size = new System.Drawing.Size(44, 23);
            View_toolStripMenuItem.Text = "表示";
            // 
            // Tree_ToolStripMenuItem
            // 
            Tree_ToolStripMenuItem.Name = "Tree_ToolStripMenuItem";
            Tree_ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
            Tree_ToolStripMenuItem.Text = "ツリー";
            Tree_ToolStripMenuItem.Click += new System.EventHandler(this.SwitchTreeViewExVisibility);
            // 
            // Properties_ToolStripMenuItem
            // 
            Properties_ToolStripMenuItem.Name = "Properties_ToolStripMenuItem";
            Properties_ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
            Properties_ToolStripMenuItem.Text = "プロパティー";
            Properties_ToolStripMenuItem.Click += new System.EventHandler(this.SwitchHTMLElementPropertyVisibility);
            // 
            // Edit_ToolStripMenuItem
            // 
            Edit_ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            Undo_ToolStripMenuItem,
            Redo_ToolStripMenuItem,
            toolStripSeparator14,
            Cut_ToolStripMenuItem,
            Delete_ToolStripMenuItem,
            Copy_ToolStripMenuItem,
            Paste_ToolStripMenuItem,
            toolStripSeparator15,
            SelectAll_ToolStripMenuItem});
            Edit_ToolStripMenuItem.Name = "Edit_ToolStripMenuItem";
            Edit_ToolStripMenuItem.Size = new System.Drawing.Size(44, 23);
            Edit_ToolStripMenuItem.Text = "編集";
            // 
            // Undo_ToolStripMenuItem
            // 
            Undo_ToolStripMenuItem.Name = "Undo_ToolStripMenuItem";
            Undo_ToolStripMenuItem.Size = new System.Drawing.Size(136, 22);
            Undo_ToolStripMenuItem.Text = "元に戻す";
            Undo_ToolStripMenuItem.Click += new System.EventHandler(this.Undo_Click);
            // 
            // Redo_ToolStripMenuItem
            // 
            Redo_ToolStripMenuItem.Name = "Redo_ToolStripMenuItem";
            Redo_ToolStripMenuItem.Size = new System.Drawing.Size(136, 22);
            Redo_ToolStripMenuItem.Text = "やり直し";
            Redo_ToolStripMenuItem.Click += new System.EventHandler(this.Redo_Click);
            // 
            // toolStripSeparator14
            // 
            toolStripSeparator14.Name = "toolStripSeparator14";
            toolStripSeparator14.Size = new System.Drawing.Size(133, 6);
            // 
            // Cut_ToolStripMenuItem
            // 
            Cut_ToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("Cut_ToolStripMenuItem.Image")));
            Cut_ToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
            Cut_ToolStripMenuItem.Name = "Cut_ToolStripMenuItem";
            Cut_ToolStripMenuItem.Size = new System.Drawing.Size(136, 22);
            Cut_ToolStripMenuItem.Text = "切り取り";
            Cut_ToolStripMenuItem.Click += new System.EventHandler(this.Cut_Click);
            // 
            // Delete_ToolStripMenuItem
            // 
            Delete_ToolStripMenuItem.Name = "Delete_ToolStripMenuItem";
            Delete_ToolStripMenuItem.Size = new System.Drawing.Size(136, 22);
            Delete_ToolStripMenuItem.Text = "削除";
            Delete_ToolStripMenuItem.Click += new System.EventHandler(this.Delete_Click);
            // 
            // Copy_ToolStripMenuItem
            // 
            Copy_ToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("Copy_ToolStripMenuItem.Image")));
            Copy_ToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
            Copy_ToolStripMenuItem.Name = "Copy_ToolStripMenuItem";
            Copy_ToolStripMenuItem.Size = new System.Drawing.Size(136, 22);
            Copy_ToolStripMenuItem.Text = "コピー";
            Copy_ToolStripMenuItem.Click += new System.EventHandler(this.Copy_Click);
            // 
            // Paste_ToolStripMenuItem
            // 
            Paste_ToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("Paste_ToolStripMenuItem.Image")));
            Paste_ToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
            Paste_ToolStripMenuItem.Name = "Paste_ToolStripMenuItem";
            Paste_ToolStripMenuItem.Size = new System.Drawing.Size(136, 22);
            Paste_ToolStripMenuItem.Text = "貼り付け";
            Paste_ToolStripMenuItem.Click += new System.EventHandler(this.Paste_Click);
            // 
            // toolStripSeparator15
            // 
            toolStripSeparator15.Name = "toolStripSeparator15";
            toolStripSeparator15.Size = new System.Drawing.Size(133, 6);
            // 
            // SelectAll_ToolStripMenuItem
            // 
            SelectAll_ToolStripMenuItem.Name = "SelectAll_ToolStripMenuItem";
            SelectAll_ToolStripMenuItem.Size = new System.Drawing.Size(136, 22);
            SelectAll_ToolStripMenuItem.Text = "すべて選択";
            SelectAll_ToolStripMenuItem.Click += new System.EventHandler(this.SelectAll_Click);
            // 
            // FontStyle_ToolStripMenuItem
            // 
            FontStyle_ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            SetFont_ToolStripMenuItem,
            文字装飾ToolStripMenuItem,
            位置揃えToolStripMenuItem});
            FontStyle_ToolStripMenuItem.Name = "FontStyle_ToolStripMenuItem";
            FontStyle_ToolStripMenuItem.Size = new System.Drawing.Size(44, 23);
            FontStyle_ToolStripMenuItem.Text = "書式";
            // 
            // SetFont_ToolStripMenuItem
            // 
            SetFont_ToolStripMenuItem.Name = "SetFont_ToolStripMenuItem";
            SetFont_ToolStripMenuItem.Size = new System.Drawing.Size(136, 22);
            SetFont_ToolStripMenuItem.Text = "フォント名";
            SetFont_ToolStripMenuItem.Click += new System.EventHandler(this.SetFont_Click);
            // 
            // 文字装飾ToolStripMenuItem
            // 
            文字装飾ToolStripMenuItem.Name = "文字装飾ToolStripMenuItem";
            文字装飾ToolStripMenuItem.Size = new System.Drawing.Size(136, 22);
            文字装飾ToolStripMenuItem.Text = "文字装飾";
            文字装飾ToolStripMenuItem.Visible = false;
            // 
            // 位置揃えToolStripMenuItem
            // 
            位置揃えToolStripMenuItem.Name = "位置揃えToolStripMenuItem";
            位置揃えToolStripMenuItem.Size = new System.Drawing.Size(136, 22);
            位置揃えToolStripMenuItem.Text = "位置揃え";
            位置揃えToolStripMenuItem.Visible = false;
            // 
            // 検索ToolStripMenuItem
            // 
            this.検索ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.iDToolStripMenuItem,
            this.tagNameToolStripMenuItem});
            this.検索ToolStripMenuItem.Name = "検索ToolStripMenuItem";
            this.検索ToolStripMenuItem.Size = new System.Drawing.Size(44, 23);
            this.検索ToolStripMenuItem.Text = "検索";
            this.検索ToolStripMenuItem.Visible = false;
            // 
            // iDToolStripMenuItem
            // 
            this.iDToolStripMenuItem.Name = "iDToolStripMenuItem";
            this.iDToolStripMenuItem.Size = new System.Drawing.Size(136, 22);
            this.iDToolStripMenuItem.Text = "ID";
            // 
            // tagNameToolStripMenuItem
            // 
            this.tagNameToolStripMenuItem.Name = "tagNameToolStripMenuItem";
            this.tagNameToolStripMenuItem.Size = new System.Drawing.Size(136, 22);
            this.tagNameToolStripMenuItem.Text = "Tag Name";
            // 
            // bottom_splitter1
            // 
            bottom_splitter1.Dock = System.Windows.Forms.DockStyle.Bottom;
            bottom_splitter1.Location = new System.Drawing.Point(0, 394);
            bottom_splitter1.Margin = new System.Windows.Forms.Padding(0);
            bottom_splitter1.Name = "bottom_splitter1";
            bottom_splitter1.Size = new System.Drawing.Size(772, 3);
            bottom_splitter1.TabIndex = 3;
            bottom_splitter1.TabStop = false;
            bottom_splitter1.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.bottom_splitter1_MouseDoubleClick);
            // 
            // upper_splitter
            // 
            upper_splitter.Dock = System.Windows.Forms.DockStyle.Top;
            upper_splitter.Location = new System.Drawing.Point(0, 46);
            upper_splitter.Margin = new System.Windows.Forms.Padding(0);
            upper_splitter.Name = "upper_splitter";
            upper_splitter.Size = new System.Drawing.Size(772, 3);
            upper_splitter.TabIndex = 6;
            upper_splitter.TabStop = false;
            upper_splitter.Visible = false;
            // 
            // vertical_splitter
            // 
            vertical_splitter.Location = new System.Drawing.Point(201, 49);
            vertical_splitter.Margin = new System.Windows.Forms.Padding(0);
            vertical_splitter.Name = "vertical_splitter";
            vertical_splitter.Size = new System.Drawing.Size(3, 345);
            vertical_splitter.TabIndex = 8;
            vertical_splitter.TabStop = false;
            vertical_splitter.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.vertical_splitter_MouseDoubleClick);
            // 
            // toolStripSeparator7
            // 
            this.toolStripSeparator7.Name = "toolStripSeparator7";
            this.toolStripSeparator7.Size = new System.Drawing.Size(6, 25);
            this.toolStripSeparator7.Visible = false;
            // 
            // contextMenuStrip1
            // 
            this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            内容を更新するToolStripMenuItem});
            this.contextMenuStrip1.Name = "contextMenuStrip1";
            this.contextMenuStrip1.Size = new System.Drawing.Size(161, 26);
            // 
            // statusStrip1
            // 
            this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.StatusLabel1});
            this.statusStrip1.Location = new System.Drawing.Point(0, 643);
            this.statusStrip1.Name = "statusStrip1";
            this.statusStrip1.Size = new System.Drawing.Size(772, 23);
            this.statusStrip1.TabIndex = 1;
            this.statusStrip1.Text = "statusStrip1";
            // 
            // propertyGrid1
            // 
            this.propertyGrid1.ContextMenuStrip = contextMenuStrip2;
            this.propertyGrid1.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.propertyGrid1.Location = new System.Drawing.Point(0, 397);
            this.propertyGrid1.Name = "propertyGrid1";
            this.propertyGrid1.Size = new System.Drawing.Size(772, 246);
            this.propertyGrid1.TabIndex = 2;
            // 
            // webBrowser1
            // 
            this.webBrowser1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.webBrowser1.Location = new System.Drawing.Point(204, 49);
            this.webBrowser1.Margin = new System.Windows.Forms.Padding(0);
            this.webBrowser1.Name = "webBrowser1";
            this.webBrowser1.ScriptErrorsSuppressed = true;
            this.webBrowser1.Size = new System.Drawing.Size(568, 345);
            this.webBrowser1.TabIndex = 9;
            this.webBrowser1.Navigating += new System.Windows.Forms.WebBrowserNavigatingEventHandler(this.webBrowser1_Navigating);
            this.webBrowser1.DocumentTitleChanged += new System.EventHandler(this.webBrowser1_DocumentTitleChanged);
            this.webBrowser1.DocumentCompleted += new System.Windows.Forms.WebBrowserDocumentCompletedEventHandler(this.webBrowser1_DocumentCompleted);
            this.webBrowser1.StatusTextChanged += new System.EventHandler(this.webBrowser1_StatusTextChanged);
            // 
            // address_textBox1
            // 
            this.address_textBox1.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
            this.address_textBox1.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.AllUrl;
            this.address_textBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.address_textBox1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.address_textBox1.Font = new System.Drawing.Font("MS UI Gothic", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
            this.address_textBox1.Location = new System.Drawing.Point(0, 0);
            this.address_textBox1.Margin = new System.Windows.Forms.Padding(0);
            this.address_textBox1.Name = "address_textBox1";
            this.address_textBox1.Size = new System.Drawing.Size(753, 19);
            this.address_textBox1.TabIndex = 10;
            this.address_textBox1.Text = "http://www.nicovideo.jp/";
            this.address_textBox1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.address_textBox1_KeyDown);
            // 
            // fontDialog1
            // 
            this.fontDialog1.Font = new System.Drawing.Font("MS UI Gothic", 1F);
            this.fontDialog1.ShowEffects = false;
            // 
            // tableLayoutPanel1
            // 
            this.tableLayoutPanel1.AutoSize = true;
            this.tableLayoutPanel1.ColumnCount = 2;
            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
            this.tableLayoutPanel1.Controls.Add(this.address_textBox1, 0, 0);
            this.tableLayoutPanel1.Controls.Add(Go, 1, 0);
            this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Top;
            this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 27);
            this.tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(0);
            this.tableLayoutPanel1.Name = "tableLayoutPanel1";
            this.tableLayoutPanel1.RowCount = 1;
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableLayoutPanel1.Size = new System.Drawing.Size(772, 19);
            this.tableLayoutPanel1.TabIndex = 11;
            // 
            // HTML_Icon
            // 
            this.HTML_Icon.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("HTML_Icon.ImageStream")));
            this.HTML_Icon.TransparentColor = System.Drawing.Color.Transparent;
            this.HTML_Icon.Images.SetKeyName(0, "canvas.png");
            // 
            // treeViewEx
            // 
            this.treeViewEx.ContextMenuStrip = this.contextMenuStrip1;
            this.treeViewEx.Dock = System.Windows.Forms.DockStyle.Left;
            this.treeViewEx.ImageIndex = 0;
            this.treeViewEx.ImageList = this.HTML_Icon;
            this.treeViewEx.Location = new System.Drawing.Point(0, 49);
            this.treeViewEx.Name = "treeViewEx";
            this.treeViewEx.SelectedImageIndex = 0;
            this.treeViewEx.Size = new System.Drawing.Size(201, 345);
            this.treeViewEx.TabIndex = 7;
            this.treeViewEx.webBrowser = this.webBrowser1;
            this.treeViewEx.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeView2_AfterSelect);
            // 
            // StatusLabel1
            // 
            this.StatusLabel1.Name = "StatusLabel1";
            this.StatusLabel1.Size = new System.Drawing.Size(20, 18);
            this.StatusLabel1.Text = "...";
            // 
            // BrowserForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(772, 666);
            this.Controls.Add(this.webBrowser1);
            this.Controls.Add(vertical_splitter);
            this.Controls.Add(this.treeViewEx);
            this.Controls.Add(upper_splitter);
            this.Controls.Add(this.tableLayoutPanel1);
            this.Controls.Add(menuStrip1);
            this.Controls.Add(bottom_splitter1);
            this.Controls.Add(this.propertyGrid1);
            this.Controls.Add(this.statusStrip1);
            this.MainMenuStrip = menuStrip1;
            this.Name = "BrowserForm";
            this.Text = "MyBrowser";
            ///////////////////////this.Deactivate += new System.EventHandler(this.BrowserForm_Deactivate);
           //////////////////////////////////// this.Activated += new System.EventHandler(this.BrowserForm_Activated);
            contextMenuStrip2.ResumeLayout(false);
            menuStrip1.ResumeLayout(false);
            menuStrip1.PerformLayout();
            this.contextMenuStrip1.ResumeLayout(false);
            this.statusStrip1.ResumeLayout(false);
            this.statusStrip1.PerformLayout();
            this.tableLayoutPanel1.ResumeLayout(false);
            this.tableLayoutPanel1.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
 /// <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.Windows.Forms.ContextMenuStrip   ctxMenu;
     System.Windows.Forms.ToolStripMenuItem  noneMenuItem;
     System.Windows.Forms.ToolStripSeparator sep1;
     System.Windows.Forms.ToolStripSeparator sep2;
     this.tabMenuItem    = new System.Windows.Forms.ToolStripMenuItem();
     this.returnMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.escMenuItem    = new System.Windows.Forms.ToolStripMenuItem();
     this.prtscMenuItem  = new System.Windows.Forms.ToolStripMenuItem();
     this.ctrlMenuItem   = new System.Windows.Forms.ToolStripMenuItem();
     this.altMenuItem    = new System.Windows.Forms.ToolStripMenuItem();
     this.winMenuItem    = new System.Windows.Forms.ToolStripMenuItem();
     this.shiftMenuItem  = new System.Windows.Forms.ToolStripMenuItem();
     ctxMenu             = new System.Windows.Forms.ContextMenuStrip(this.components);
     noneMenuItem        = new System.Windows.Forms.ToolStripMenuItem();
     sep1 = new System.Windows.Forms.ToolStripSeparator();
     sep2 = new System.Windows.Forms.ToolStripSeparator();
     ctxMenu.SuspendLayout();
     this.SuspendLayout();
     //
     // ctxMenu
     //
     ctxMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         noneMenuItem,
         sep1,
         this.tabMenuItem,
         this.returnMenuItem,
         this.escMenuItem,
         this.prtscMenuItem,
         sep2,
         this.ctrlMenuItem,
         this.altMenuItem,
         this.winMenuItem,
         this.shiftMenuItem
     });
     ctxMenu.Name = "ctxMenu";
     ctxMenu.Size = new System.Drawing.Size(111, 214);
     //
     // noneMenuItem
     //
     noneMenuItem.Name   = "noneMenuItem";
     noneMenuItem.Size   = new System.Drawing.Size(110, 22);
     noneMenuItem.Text   = "None";
     noneMenuItem.Click += new System.EventHandler(this.noneMenuItem_Click);
     //
     // sep1
     //
     sep1.Name = "sep1";
     sep1.Size = new System.Drawing.Size(107, 6);
     //
     // tabMenuItem
     //
     this.tabMenuItem.Name   = "tabMenuItem";
     this.tabMenuItem.Size   = new System.Drawing.Size(110, 22);
     this.tabMenuItem.Click += new System.EventHandler(this.tabMenuItem_Click);
     //
     // returnMenuItem
     //
     this.returnMenuItem.Name   = "returnMenuItem";
     this.returnMenuItem.Size   = new System.Drawing.Size(110, 22);
     this.returnMenuItem.Click += new System.EventHandler(this.returnMenuItem_Click);
     //
     // escMenuItem
     //
     this.escMenuItem.Name   = "escMenuItem";
     this.escMenuItem.Size   = new System.Drawing.Size(110, 22);
     this.escMenuItem.Click += new System.EventHandler(this.escMenuItem_Click);
     //
     // prtscMenuItem
     //
     this.prtscMenuItem.Name   = "prtscMenuItem";
     this.prtscMenuItem.Size   = new System.Drawing.Size(110, 22);
     this.prtscMenuItem.Click += new System.EventHandler(this.prtscMenuItem_Click);
     //
     // sep2
     //
     sep2.Name = "sep2";
     sep2.Size = new System.Drawing.Size(107, 6);
     //
     // ctrlMenuItem
     //
     this.ctrlMenuItem.Name   = "ctrlMenuItem";
     this.ctrlMenuItem.Size   = new System.Drawing.Size(110, 22);
     this.ctrlMenuItem.Click += new System.EventHandler(this.ctrlMenuItem_Click);
     //
     // altMenuItem
     //
     this.altMenuItem.Name   = "altMenuItem";
     this.altMenuItem.Size   = new System.Drawing.Size(110, 22);
     this.altMenuItem.Click += new System.EventHandler(this.altMenuItem_Click);
     //
     // winMenuItem
     //
     this.winMenuItem.Name   = "winMenuItem";
     this.winMenuItem.Size   = new System.Drawing.Size(110, 22);
     this.winMenuItem.Click += new System.EventHandler(this.winMenuItem_Click);
     //
     // shiftMenuItem
     //
     this.shiftMenuItem.Name   = "shiftMenuItem";
     this.shiftMenuItem.Size   = new System.Drawing.Size(110, 22);
     this.shiftMenuItem.Click += new System.EventHandler(this.shiftMenuItem_Click);
     //
     // ShortcutBox
     //
     this.ContextMenuStrip = ctxMenu;
     this.KeyUp           += new System.Windows.Forms.KeyEventHandler(this.ShortcutBox_KeyUp);
     this.KeyPress        += new System.Windows.Forms.KeyPressEventHandler(this.ShortcutBox_KeyPress);
     this.KeyDown         += new System.Windows.Forms.KeyEventHandler(this.ShortcutBox_KeyDown);
     ctxMenu.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Esempio n. 17
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        void InitializeComponent()
        {
            components = new System.ComponentModel.Container();
            var resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
            ImageList = new System.Windows.Forms.ImageList(components);
            btnSavePath = new System.Windows.Forms.ToolStripButton();
            toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            URL = new System.Windows.Forms.ToolStripTextBox();
            toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
            lbTask = new System.Windows.Forms.ToolStripLabel();
            MaxDownloaders = new System.Windows.Forms.ToolStripComboBox();
            FBD = new System.Windows.Forms.FolderBrowserDialog();
            Tray = new System.Windows.Forms.NotifyIcon(components);
            Toolbar = new System.Windows.Forms.ToolStrip();
            lbSplit = new System.Windows.Forms.ToolStripLabel();
            MaxConnections = new System.Windows.Forms.ToolStripComboBox();
            btnOption = new System.Windows.Forms.ToolStripDropDownButton();
            miEditINI = new System.Windows.Forms.ToolStripMenuItem();
            miTrace = new System.Windows.Forms.ToolStripMenuItem();
            debug = new System.Windows.Forms.ToolStripMenuItem();
            info = new System.Windows.Forms.ToolStripMenuItem();
            notice = new System.Windows.Forms.ToolStripMenuItem();
            warn = new System.Windows.Forms.ToolStripMenuItem();
            error = new System.Windows.Forms.ToolStripMenuItem();
            miLog = new System.Windows.Forms.ToolStripMenuItem();
            toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
            miProxy = new System.Windows.Forms.ToolStripMenuItem();
            miConnection = new System.Windows.Forms.ToolStripMenuItem();
            toolStripMenuItem2 = new System.Windows.Forms.ToolStripSeparator();
            miClipboard = new System.Windows.Forms.ToolStripMenuItem();
            miParseOnly = new System.Windows.Forms.ToolStripMenuItem();
            miCopyURL = new System.Windows.Forms.ToolStripMenuItem();
            miRunDownloader = new System.Windows.Forms.ToolStripMenuItem();
            miSeparator0 = new System.Windows.Forms.ToolStripSeparator();
            miStayTop = new System.Windows.Forms.ToolStripMenuItem();
            miLanguage = new System.Windows.Forms.ToolStripMenuItem();
            miLangAuto = new System.Windows.Forms.ToolStripMenuItem();
            toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator();
            miLangChs = new System.Windows.Forms.ToolStripMenuItem();
            miLangEn = new System.Windows.Forms.ToolStripMenuItem();
            cmTaskList = new System.Windows.Forms.ContextMenuStrip(components);
            miOpen = new System.Windows.Forms.ToolStripMenuItem();
            miOpenDir = new System.Windows.Forms.ToolStripMenuItem();
            miSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            miMoveTop = new System.Windows.Forms.ToolStripMenuItem();
            miMoveUp = new System.Windows.Forms.ToolStripMenuItem();
            miMoveDown = new System.Windows.Forms.ToolStripMenuItem();
            miMoveBottom = new System.Windows.Forms.ToolStripMenuItem();
            miSeparator2 = new System.Windows.Forms.ToolStripSeparator();
            miDelete = new System.Windows.Forms.ToolStripMenuItem();
            miSeparator3 = new System.Windows.Forms.ToolStripSeparator();
            miSelectAll = new System.Windows.Forms.ToolStripMenuItem();
            OFD = new System.Windows.Forms.OpenFileDialog();
            MainSplit = new System.Windows.Forms.SplitContainer();
            TaskList = new KK.ListViewEX();
            colURL = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            colName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            colSize = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            colProgress = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            colSpeed = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            colETA = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            Memo = new System.Windows.Forms.RichTextBox();
            miShutdown = new System.Windows.Forms.ToolStripMenuItem();
            Toolbar.SuspendLayout();
            cmTaskList.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(MainSplit)).BeginInit();
            MainSplit.Panel1.SuspendLayout();
            MainSplit.Panel2.SuspendLayout();
            MainSplit.SuspendLayout();
            SuspendLayout();
            // 
            // ImageList
            // 
            ImageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("ImageList.ImageStream")));
            ImageList.TransparentColor = System.Drawing.Color.Magenta;
            ImageList.Images.SetKeyName(0, "");
            ImageList.Images.SetKeyName(1, "");
            // 
            // btnSavePath
            // 
            btnSavePath.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            resources.ApplyResources(btnSavePath, "btnSavePath");
            btnSavePath.Name = "btnSavePath";
			btnSavePath.Click += btnSavePath_Click;
            // 
            // toolStripSeparator1
            // 
            toolStripSeparator1.Name = "toolStripSeparator1";
            resources.ApplyResources(toolStripSeparator1, "toolStripSeparator1");
            // 
            // URL
            // 
            resources.ApplyResources(URL, "URL");
            URL.Name = "URL";
			URL.KeyDown += URL_KeyDown;
			URL.DoubleClick += URL_DoubleClick;
			URL.MouseEnter += URL_MouseEnter;
            // 
            // toolStripSeparator2
            // 
            toolStripSeparator2.Name = "toolStripSeparator2";
            resources.ApplyResources(toolStripSeparator2, "toolStripSeparator2");
            // 
            // lbTask
            // 
            lbTask.Name = "lbTask";
            resources.ApplyResources(lbTask, "lbTask");
            // 
            // MaxDownloaders
            // 
            MaxDownloaders.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            resources.ApplyResources(MaxDownloaders, "MaxDownloaders");
            MaxDownloaders.Items.AddRange(new object[] {
            resources.GetString("MaxDownloaders.Items"),
            resources.GetString("MaxDownloaders.Items1"),
            resources.GetString("MaxDownloaders.Items2"),
            resources.GetString("MaxDownloaders.Items3"),
            resources.GetString("MaxDownloaders.Items4"),
            resources.GetString("MaxDownloaders.Items5"),
            resources.GetString("MaxDownloaders.Items6"),
            resources.GetString("MaxDownloaders.Items7"),
            resources.GetString("MaxDownloaders.Items8")});
            MaxDownloaders.Name = "MaxDownloaders";
			MaxDownloaders.DropDownClosed += MaxDownloaders_DropDownClosed;
			MaxDownloaders.SelectedIndexChanged += MaxDownloaders_SelectedIndexChanged;
            // 
            // FBD
            // 
            resources.ApplyResources(FBD, "FBD");
            // 
            // Tray
            // 
			Tray.MouseClick += Tray_MouseClick;
            // 
            // Toolbar
            // 
            resources.ApplyResources(Toolbar, "Toolbar");
            Toolbar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            btnSavePath,
            toolStripSeparator1,
            URL,
            toolStripSeparator2,
            lbTask,
            MaxDownloaders,
            lbSplit,
            MaxConnections,
            btnOption});
            Toolbar.Name = "Toolbar";
            Toolbar.ShowItemToolTips = false;
			Toolbar.MouseDoubleClick += Toolbar_MouseDoubleClick;
            // 
            // lbSplit
            // 
            lbSplit.Name = "lbSplit";
            resources.ApplyResources(lbSplit, "lbSplit");
            // 
            // MaxConnections
            // 
            MaxConnections.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            resources.ApplyResources(MaxConnections, "MaxConnections");
            MaxConnections.Items.AddRange(new object[] {
            resources.GetString("MaxConnections.Items"),
            resources.GetString("MaxConnections.Items1"),
            resources.GetString("MaxConnections.Items2"),
            resources.GetString("MaxConnections.Items3"),
            resources.GetString("MaxConnections.Items4"),
            resources.GetString("MaxConnections.Items5"),
            resources.GetString("MaxConnections.Items6"),
            resources.GetString("MaxConnections.Items7"),
            resources.GetString("MaxConnections.Items8")});
            MaxConnections.Name = "MaxConnections";
			MaxConnections.DropDownClosed += MaxDownloaders_DropDownClosed;
			MaxConnections.SelectedIndexChanged += MaxConnections_SelectedIndexChanged;
            // 
            // btnOption
            // 
            btnOption.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            btnOption.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            miShutdown,
            miEditINI,
            miTrace,
            miLog,
            toolStripSeparator3,
            miProxy,
            miConnection,
            toolStripMenuItem2,
            miClipboard,
            miParseOnly,
            miSeparator0,
            miStayTop,
            miLanguage});
            resources.ApplyResources(btnOption, "btnOption");
            btnOption.Name = "btnOption";
            // 
            // miEditINI
            // 
            miEditINI.Name = "miEditINI";
            resources.ApplyResources(miEditINI, "miEditINI");
			miEditINI.Click += miEditINI_Click;
            // 
            // miTrace
            // 
            miTrace.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            debug,
            info,
            notice,
            warn,
            error});
            miTrace.Name = "miTrace";
            resources.ApplyResources(miTrace, "miTrace");
			miTrace.DropDownItemClicked += miTrace_DropDownItemClicked;
			miTrace.Click += miTrace_Click;
            // 
            // debug
            // 
            debug.Name = "debug";
            resources.ApplyResources(debug, "debug");
            // 
            // info
            // 
            info.Name = "info";
            resources.ApplyResources(info, "info");
            // 
            // notice
            // 
            notice.Name = "notice";
            resources.ApplyResources(notice, "notice");
            // 
            // warn
            // 
            warn.Name = "warn";
            resources.ApplyResources(warn, "warn");
            // 
            // error
            // 
            error.Name = "error";
            resources.ApplyResources(error, "error");
            // 
            // miLog
            // 
            miLog.Name = "miLog";
            resources.ApplyResources(miLog, "miLog");
			miLog.Click += miLog_Click;
            // 
            // toolStripSeparator3
            // 
            toolStripSeparator3.Name = "toolStripSeparator3";
            resources.ApplyResources(toolStripSeparator3, "toolStripSeparator3");
            // 
            // miProxy
            // 
            miProxy.Name = "miProxy";
            resources.ApplyResources(miProxy, "miProxy");
			miProxy.Click += miProxy_Click;
            // 
            // miConnection
            // 
            miConnection.Name = "miConnection";
            resources.ApplyResources(miConnection, "miConnection");
			miConnection.Click += miConnection_Click;
            // 
            // toolStripMenuItem2
            // 
            toolStripMenuItem2.Name = "toolStripMenuItem2";
            resources.ApplyResources(toolStripMenuItem2, "toolStripMenuItem2");
            // 
            // miClipboard
            // 
            miClipboard.Name = "miClipboard";
            resources.ApplyResources(miClipboard, "miClipboard");
			miClipboard.Click += miClipboard_Click;
            // 
            // miParseOnly
            // 
            miParseOnly.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            miCopyURL,
            miRunDownloader});
            miParseOnly.Name = "miParseOnly";
            resources.ApplyResources(miParseOnly, "miParseOnly");
			miParseOnly.DropDownItemClicked += miParseOnly_DropDownItemClicked;
			miParseOnly.Click += miParseOnly_Click;
            // 
            // miCopyURL
            // 
            miCopyURL.Name = "miCopyURL";
            resources.ApplyResources(miCopyURL, "miCopyURL");
            // 
            // miRunDownloader
            // 
            miRunDownloader.Name = "miRunDownloader";
            resources.ApplyResources(miRunDownloader, "miRunDownloader");
            // 
            // miSeparator0
            // 
            miSeparator0.Name = "miSeparator0";
            resources.ApplyResources(miSeparator0, "miSeparator0");
            // 
            // miStayTop
            // 
            miStayTop.CheckOnClick = true;
            miStayTop.Name = "miStayTop";
            resources.ApplyResources(miStayTop, "miStayTop");
			miStayTop.CheckedChanged += miStayTop_CheckedChanged;
            // 
            // miLanguage
            // 
            miLanguage.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            miLangAuto,
            toolStripMenuItem1,
            miLangChs,
            miLangEn});
            miLanguage.Name = "miLanguage";
            resources.ApplyResources(miLanguage, "miLanguage");
			miLanguage.DropDownItemClicked += miLanguage_DropDownItemClicked;
            // 
            // miLangAuto
            // 
            miLangAuto.Name = "miLangAuto";
            resources.ApplyResources(miLangAuto, "miLangAuto");
            // 
            // toolStripMenuItem1
            // 
            toolStripMenuItem1.Name = "toolStripMenuItem1";
            resources.ApplyResources(toolStripMenuItem1, "toolStripMenuItem1");
            // 
            // miLangChs
            // 
            miLangChs.Name = "miLangChs";
            resources.ApplyResources(miLangChs, "miLangChs");
            // 
            // miLangEn
            // 
            miLangEn.Name = "miLangEn";
            resources.ApplyResources(miLangEn, "miLangEn");
            // 
            // cmTaskList
            // 
            resources.ApplyResources(cmTaskList, "cmTaskList");
            cmTaskList.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            miOpen,
            miOpenDir,
            miSeparator1,
            miMoveTop,
            miMoveUp,
            miMoveDown,
            miMoveBottom,
            miSeparator2,
            miDelete,
            miSeparator3,
            miSelectAll});
            cmTaskList.Name = "cmTaskList";
			cmTaskList.Opening += cmTaskList_Opening;
            // 
            // miOpen
            // 
            miOpen.Name = "miOpen";
            resources.ApplyResources(miOpen, "miOpen");
			miOpen.Click += miOpen_Click;
            // 
            // miOpenDir
            // 
            miOpenDir.Name = "miOpenDir";
            resources.ApplyResources(miOpenDir, "miOpenDir");
			miOpenDir.Click += miOpenDir_Click;
            // 
            // miSeparator1
            // 
            miSeparator1.Name = "miSeparator1";
            resources.ApplyResources(miSeparator1, "miSeparator1");
            // 
            // miMoveTop
            // 
            miMoveTop.Name = "miMoveTop";
            resources.ApplyResources(miMoveTop, "miMoveTop");
			miMoveTop.Click += miMoveTop_Click;
            // 
            // miMoveUp
            // 
            miMoveUp.Name = "miMoveUp";
            resources.ApplyResources(miMoveUp, "miMoveUp");
			miMoveUp.Click += miMoveUp_Click;
            // 
            // miMoveDown
            // 
            miMoveDown.Name = "miMoveDown";
            resources.ApplyResources(miMoveDown, "miMoveDown");
			miMoveDown.Click += miMoveDown_Click;
            // 
            // miMoveBottom
            // 
            miMoveBottom.Name = "miMoveBottom";
            resources.ApplyResources(miMoveBottom, "miMoveBottom");
			miMoveBottom.Click += miMoveBottom_Click;
            // 
            // miSeparator2
            // 
            miSeparator2.Name = "miSeparator2";
            resources.ApplyResources(miSeparator2, "miSeparator2");
            // 
            // miDelete
            // 
            miDelete.Name = "miDelete";
            resources.ApplyResources(miDelete, "miDelete");
			miDelete.Click += miDelete_Click;
            // 
            // miSeparator3
            // 
            miSeparator3.Name = "miSeparator3";
            resources.ApplyResources(miSeparator3, "miSeparator3");
            // 
            // miSelectAll
            // 
            miSelectAll.Name = "miSelectAll";
            resources.ApplyResources(miSelectAll, "miSelectAll");
			miSelectAll.Click += miSelectAll_Click;
            // 
            // OFD
            // 
            resources.ApplyResources(OFD, "OFD");
            OFD.SupportMultiDottedExtensions = true;
            // 
            // MainSplit
            // 
            resources.ApplyResources(MainSplit, "MainSplit");
            MainSplit.Name = "MainSplit";
            // 
            // MainSplit.Panel1
            // 
            MainSplit.Panel1.Controls.Add(TaskList);
            // 
            // MainSplit.Panel2
            // 
            MainSplit.Panel2.Controls.Add(Memo);
            MainSplit.TabStop = false;
			MainSplit.SplitterMoved += MainSplit_SplitterMoved;
            // 
            // TaskList
            // 
            TaskList.AllowColumnReorder = true;
            TaskList.AllowDrop = true;
            TaskList.BorderStyle = System.Windows.Forms.BorderStyle.None;
            TaskList.Columns.AddRange(new [] {
            colURL,
            colName,
            colSize,
            colProgress,
            colSpeed,
            colETA});
            TaskList.ContextMenuStrip = cmTaskList;
            resources.ApplyResources(TaskList, "TaskList");
            TaskList.FullRowSelect = true;
            TaskList.Name = "TaskList";
            TaskList.OwnerDraw = true;
            TaskList.ShowItemToolTips = true;
            TaskList.SmallImageList = ImageList;
            TaskList.UseCompatibleStateImageBehavior = false;
            TaskList.View = System.Windows.Forms.View.Details;
			TaskList.ColumnClick += TaskList_ColumnClick;
			TaskList.DragDrop += TaskList_DragDrop;
			TaskList.DragEnter += TaskList_DragEnter;
			TaskList.DoubleClick += TaskList_DoubleClick;
			TaskList.KeyDown += TaskList_KeyDown;
			TaskList.MouseEnter += MaxDownloaders_DropDownClosed;
            // 
            // colURL
            // 
            resources.ApplyResources(colURL, "colURL");
            // 
            // colName
            // 
            resources.ApplyResources(colName, "colName");
            // 
            // colSize
            // 
            resources.ApplyResources(colSize, "colSize");
            // 
            // colProgress
            // 
            resources.ApplyResources(colProgress, "colProgress");
            // 
            // colSpeed
            // 
            resources.ApplyResources(colSpeed, "colSpeed");
            // 
            // colETA
            // 
            resources.ApplyResources(colETA, "colETA");
            // 
            // Memo
            // 
            Memo.BorderStyle = System.Windows.Forms.BorderStyle.None;
            resources.ApplyResources(Memo, "Memo");
            Memo.Name = "Memo";
            Memo.ReadOnly = true;
			Memo.LinkClicked += Memo_LinkClicked;
			Memo.DoubleClick += Memo_DoubleClick;
            // 
            // miShutdown
            // 
            miShutdown.CheckOnClick = true;
            miShutdown.Name = "miShutdown";
            resources.ApplyResources(miShutdown, "miShutdown");
            // 
            // MainForm
            // 
            resources.ApplyResources(this, "$this");
            AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            Controls.Add(MainSplit);
            Controls.Add(Toolbar);
            Name = "MainForm";
			FormClosing += MainForm_FormClosing;
			Shown += MainForm_Shown;
            Toolbar.ResumeLayout(false);
            Toolbar.PerformLayout();
            cmTaskList.ResumeLayout(false);
            MainSplit.Panel1.ResumeLayout(false);
            MainSplit.Panel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(MainSplit)).EndInit();
            MainSplit.ResumeLayout(false);
            ResumeLayout(false);
            PerformLayout();

        }
 /// <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.Windows.Forms.ColumnHeader              columnHeader1;
     System.Windows.Forms.ColumnHeader              columnHeader2;
     System.Windows.Forms.ContextMenuStrip          resultColumnsContextMenuStrip;
     System.Windows.Forms.ToolStripSeparator        toolStripSeparator3;
     System.Windows.Forms.ToolStripSeparator        toolStripSeparator2;
     System.Windows.Forms.ToolStripSeparator        toolStripMenuItem1;
     System.Windows.Forms.ColumnHeader              columnHeader3;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(TableInsertForm));
     this.resultColumnAddToCondition         = new System.Windows.Forms.ToolStripMenuItem();
     this.resultColumnsSelectAllMenuItem     = new System.Windows.Forms.ToolStripMenuItem();
     this.resultColumnsSelectInverseMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.resultColumnSortNoneMenuItem       = new System.Windows.Forms.ToolStripMenuItem();
     this.resultColumnSortAscMenuItem        = new System.Windows.Forms.ToolStripMenuItem();
     this.resultColumnSortDescMenuItem       = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1        = new System.Windows.Forms.ToolStripSeparator();
     this.resultColumnRemoveMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.cmdRefresh                          = new System.Windows.Forms.Button();
     this.cmdClose                            = new System.Windows.Forms.Button();
     this.tableTree                           = new TecWare.PPSn.Controls.PpsTreeView();
     this.filterGrid                          = new TecWare.PPSn.Controls.PpsFilterEditor();
     this.currentColumnsListView              = new System.Windows.Forms.ListView();
     this.currentContextMenuStrip             = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.currentColumnAddToResultMenuItem    = new System.Windows.Forms.ToolStripMenuItem();
     this.currentColumnAddToCondition         = new System.Windows.Forms.ToolStripMenuItem();
     this.currentColumnsSelectAllMenuItem     = new System.Windows.Forms.ToolStripMenuItem();
     this.currentColumnsSelectInverseMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.resultColumnsListView               = new System.Windows.Forms.ListView();
     this.imageListSort                       = new System.Windows.Forms.ImageList(this.components);
     columnHeader1                            = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     columnHeader2                            = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     resultColumnsContextMenuStrip            = new System.Windows.Forms.ContextMenuStrip(this.components);
     toolStripSeparator3                      = new System.Windows.Forms.ToolStripSeparator();
     toolStripSeparator2                      = new System.Windows.Forms.ToolStripSeparator();
     toolStripMenuItem1                       = new System.Windows.Forms.ToolStripSeparator();
     columnHeader3                            = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     resultColumnsContextMenuStrip.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.filterGrid)).BeginInit();
     this.currentContextMenuStrip.SuspendLayout();
     this.SuspendLayout();
     //
     // columnHeader1
     //
     columnHeader1.Text  = "Spalte";
     columnHeader1.Width = 220;
     //
     // columnHeader2
     //
     columnHeader2.Text  = "Spalte";
     columnHeader2.Width = 200;
     //
     // resultColumnsContextMenuStrip
     //
     resultColumnsContextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.resultColumnAddToCondition,
         toolStripSeparator3,
         this.resultColumnsSelectAllMenuItem,
         this.resultColumnsSelectInverseMenuItem,
         toolStripSeparator2,
         this.resultColumnSortNoneMenuItem,
         this.resultColumnSortAscMenuItem,
         this.resultColumnSortDescMenuItem,
         this.toolStripSeparator1,
         this.resultColumnRemoveMenuItem
     });
     resultColumnsContextMenuStrip.Name     = "resultColumnsContextMenuStrip";
     resultColumnsContextMenuStrip.Size     = new System.Drawing.Size(200, 176);
     resultColumnsContextMenuStrip.Opening += new System.ComponentModel.CancelEventHandler(this.resultColumnsContextMenuStrip_Opening);
     //
     // resultColumnAddToCondition
     //
     this.resultColumnAddToCondition.Name   = "resultColumnAddToCondition";
     this.resultColumnAddToCondition.Size   = new System.Drawing.Size(199, 22);
     this.resultColumnAddToCondition.Text   = "Als Bedingung";
     this.resultColumnAddToCondition.Click += new System.EventHandler(this.CommandExec);
     //
     // toolStripSeparator3
     //
     toolStripSeparator3.Name = "toolStripSeparator3";
     toolStripSeparator3.Size = new System.Drawing.Size(196, 6);
     //
     // resultColumnsSelectAllMenuItem
     //
     this.resultColumnsSelectAllMenuItem.Name = "resultColumnsSelectAllMenuItem";
     this.resultColumnsSelectAllMenuItem.ShortcutKeyDisplayString = "Strg+A";
     this.resultColumnsSelectAllMenuItem.Size   = new System.Drawing.Size(199, 22);
     this.resultColumnsSelectAllMenuItem.Text   = "Alles markieren";
     this.resultColumnsSelectAllMenuItem.Click += new System.EventHandler(this.CommandExec);
     //
     // resultColumnsSelectInverseMenuItem
     //
     this.resultColumnsSelectInverseMenuItem.Name   = "resultColumnsSelectInverseMenuItem";
     this.resultColumnsSelectInverseMenuItem.Size   = new System.Drawing.Size(199, 22);
     this.resultColumnsSelectInverseMenuItem.Text   = "Markierung umkehren";
     this.resultColumnsSelectInverseMenuItem.Click += new System.EventHandler(this.CommandExec);
     //
     // toolStripSeparator2
     //
     toolStripSeparator2.Name = "toolStripSeparator2";
     toolStripSeparator2.Size = new System.Drawing.Size(196, 6);
     //
     // resultColumnSortNoneMenuItem
     //
     this.resultColumnSortNoneMenuItem.Name   = "resultColumnSortNoneMenuItem";
     this.resultColumnSortNoneMenuItem.Size   = new System.Drawing.Size(199, 22);
     this.resultColumnSortNoneMenuItem.Text   = "Keine Sortierung";
     this.resultColumnSortNoneMenuItem.Click += new System.EventHandler(this.CommandExec);
     //
     // resultColumnSortAscMenuItem
     //
     this.resultColumnSortAscMenuItem.Image  = global::TecWare.PPSn.Properties.Resources.SortAscendingImage;
     this.resultColumnSortAscMenuItem.Name   = "resultColumnSortAscMenuItem";
     this.resultColumnSortAscMenuItem.Size   = new System.Drawing.Size(199, 22);
     this.resultColumnSortAscMenuItem.Text   = "Aufsteigend sortieren";
     this.resultColumnSortAscMenuItem.Click += new System.EventHandler(this.CommandExec);
     //
     // resultColumnSortDescMenuItem
     //
     this.resultColumnSortDescMenuItem.Image  = global::TecWare.PPSn.Properties.Resources.SortDescendingImage;
     this.resultColumnSortDescMenuItem.Name   = "resultColumnSortDescMenuItem";
     this.resultColumnSortDescMenuItem.Size   = new System.Drawing.Size(199, 22);
     this.resultColumnSortDescMenuItem.Text   = "Absteigend sortieren";
     this.resultColumnSortDescMenuItem.Click += new System.EventHandler(this.CommandExec);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(196, 6);
     //
     // resultColumnRemoveMenuItem
     //
     this.resultColumnRemoveMenuItem.Name = "resultColumnRemoveMenuItem";
     this.resultColumnRemoveMenuItem.ShortcutKeyDisplayString = "Entf";
     this.resultColumnRemoveMenuItem.Size   = new System.Drawing.Size(199, 22);
     this.resultColumnRemoveMenuItem.Text   = "&Entfernen";
     this.resultColumnRemoveMenuItem.Click += new System.EventHandler(this.CommandExec);
     //
     // toolStripMenuItem1
     //
     toolStripMenuItem1.Name = "toolStripMenuItem1";
     toolStripMenuItem1.Size = new System.Drawing.Size(196, 6);
     //
     // columnHeader3
     //
     columnHeader3.Text  = "Quelle";
     columnHeader3.Width = 140;
     //
     // cmdRefresh
     //
     this.cmdRefresh.Location = new System.Drawing.Point(707, 540);
     this.cmdRefresh.Name     = "cmdRefresh";
     this.cmdRefresh.Size     = new System.Drawing.Size(100, 23);
     this.cmdRefresh.TabIndex = 4;
     this.cmdRefresh.Text     = "Einfügen";
     this.cmdRefresh.UseVisualStyleBackColor = true;
     this.cmdRefresh.Click += new System.EventHandler(this.cmdInsert_Click);
     //
     // cmdClose
     //
     this.cmdClose.DialogResult            = System.Windows.Forms.DialogResult.Cancel;
     this.cmdClose.Location                = new System.Drawing.Point(813, 540);
     this.cmdClose.Name                    = "cmdClose";
     this.cmdClose.Size                    = new System.Drawing.Size(100, 23);
     this.cmdClose.TabIndex                = 5;
     this.cmdClose.Text                    = "Schließen";
     this.cmdClose.UseVisualStyleBackColor = true;
     //
     // tableTree
     //
     this.tableTree.CheckBoxes    = true;
     this.tableTree.HideSelection = false;
     this.tableTree.Location      = new System.Drawing.Point(16, 16);
     this.tableTree.Name          = "tableTree";
     this.tableTree.ShowPlusMinus = false;
     this.tableTree.ShowRootLines = false;
     this.tableTree.Size          = new System.Drawing.Size(269, 355);
     this.tableTree.TabIndex      = 0;
     this.tableTree.AfterCheck   += new System.Windows.Forms.TreeViewEventHandler(this.tableTree_AfterCheck);
     this.tableTree.AfterSelect  += new System.Windows.Forms.TreeViewEventHandler(this.tableTree_AfterSelect);
     //
     // filterGrid
     //
     this.filterGrid.AllowDrop                   = true;
     this.filterGrid.AllowUserToAddRows          = false;
     this.filterGrid.AllowUserToDeleteRows       = false;
     this.filterGrid.AllowUserToOrderColumns     = true;
     this.filterGrid.AllowUserToResizeRows       = false;
     this.filterGrid.BackgroundColor             = System.Drawing.SystemColors.Window;
     this.filterGrid.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.filterGrid.EditMode      = System.Windows.Forms.DataGridViewEditMode.EditOnEnter;
     this.filterGrid.GridColor     = System.Drawing.SystemColors.Window;
     this.filterGrid.Location      = new System.Drawing.Point(16, 377);
     this.filterGrid.Name          = "filterGrid";
     this.filterGrid.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
     this.filterGrid.Size          = new System.Drawing.Size(897, 157);
     this.filterGrid.TabIndex      = 3;
     this.filterGrid.DragDrop     += new System.Windows.Forms.DragEventHandler(this.filterGrid_DragDrop);
     this.filterGrid.DragEnter    += new System.Windows.Forms.DragEventHandler(this.filterGrid_DragEnter);
     this.filterGrid.DragOver     += new System.Windows.Forms.DragEventHandler(this.filterGrid_DragOver);
     //
     // currentColumnsListView
     //
     this.currentColumnsListView.AllowDrop = true;
     this.currentColumnsListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         columnHeader1
     });
     this.currentColumnsListView.ContextMenuStrip = this.currentContextMenuStrip;
     this.currentColumnsListView.HeaderStyle      = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.currentColumnsListView.HideSelection    = false;
     this.currentColumnsListView.Location         = new System.Drawing.Point(291, 16);
     this.currentColumnsListView.Name             = "currentColumnsListView";
     this.currentColumnsListView.ShowGroups       = false;
     this.currentColumnsListView.Size             = new System.Drawing.Size(243, 355);
     this.currentColumnsListView.TabIndex         = 1;
     this.currentColumnsListView.UseCompatibleStateImageBehavior = false;
     this.currentColumnsListView.View       = System.Windows.Forms.View.Details;
     this.currentColumnsListView.DragDrop  += new System.Windows.Forms.DragEventHandler(this.currentColumnsListView_DragDrop);
     this.currentColumnsListView.DragEnter += new System.Windows.Forms.DragEventHandler(this.currentColumnsListView_DragEnter);
     this.currentColumnsListView.KeyUp     += new System.Windows.Forms.KeyEventHandler(this.currentColumnsListView_KeyUp);
     this.currentColumnsListView.MouseDown += new System.Windows.Forms.MouseEventHandler(this.listView_MouseDown);
     this.currentColumnsListView.MouseMove += new System.Windows.Forms.MouseEventHandler(this.listView_MouseMove);
     //
     // currentContextMenuStrip
     //
     this.currentContextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.currentColumnAddToResultMenuItem,
         this.currentColumnAddToCondition,
         toolStripMenuItem1,
         this.currentColumnsSelectAllMenuItem,
         this.currentColumnsSelectInverseMenuItem
     });
     this.currentContextMenuStrip.Name     = "currentContextMenuStrip";
     this.currentContextMenuStrip.Size     = new System.Drawing.Size(200, 98);
     this.currentContextMenuStrip.Opening += new System.ComponentModel.CancelEventHandler(this.currentContextMenuStrip_Opening);
     //
     // currentColumnAddToResultMenuItem
     //
     this.currentColumnAddToResultMenuItem.Name   = "currentColumnAddToResultMenuItem";
     this.currentColumnAddToResultMenuItem.Size   = new System.Drawing.Size(199, 22);
     this.currentColumnAddToResultMenuItem.Text   = "Hinzufügen";
     this.currentColumnAddToResultMenuItem.Click += new System.EventHandler(this.CommandExec);
     //
     // currentColumnAddToCondition
     //
     this.currentColumnAddToCondition.Name   = "currentColumnAddToCondition";
     this.currentColumnAddToCondition.Size   = new System.Drawing.Size(199, 22);
     this.currentColumnAddToCondition.Text   = "Als Bedingung";
     this.currentColumnAddToCondition.Click += new System.EventHandler(this.CommandExec);
     //
     // currentColumnsSelectAllMenuItem
     //
     this.currentColumnsSelectAllMenuItem.Name = "currentColumnsSelectAllMenuItem";
     this.currentColumnsSelectAllMenuItem.ShortcutKeyDisplayString = "Strg+A";
     this.currentColumnsSelectAllMenuItem.Size   = new System.Drawing.Size(199, 22);
     this.currentColumnsSelectAllMenuItem.Text   = "Alles markieren";
     this.currentColumnsSelectAllMenuItem.Click += new System.EventHandler(this.CommandExec);
     //
     // currentColumnsSelectInverseMenuItem
     //
     this.currentColumnsSelectInverseMenuItem.Name   = "currentColumnsSelectInverseMenuItem";
     this.currentColumnsSelectInverseMenuItem.Size   = new System.Drawing.Size(199, 22);
     this.currentColumnsSelectInverseMenuItem.Text   = "Markierung umkehren";
     this.currentColumnsSelectInverseMenuItem.Click += new System.EventHandler(this.CommandExec);
     //
     // resultColumnsListView
     //
     this.resultColumnsListView.AllowDrop = true;
     this.resultColumnsListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         columnHeader2,
         columnHeader3
     });
     this.resultColumnsListView.ContextMenuStrip = resultColumnsContextMenuStrip;
     this.resultColumnsListView.HeaderStyle      = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.resultColumnsListView.HideSelection    = false;
     this.resultColumnsListView.LabelEdit        = true;
     this.resultColumnsListView.Location         = new System.Drawing.Point(540, 16);
     this.resultColumnsListView.Name             = "resultColumnsListView";
     this.resultColumnsListView.ShowGroups       = false;
     this.resultColumnsListView.ShowItemToolTips = true;
     this.resultColumnsListView.Size             = new System.Drawing.Size(373, 355);
     this.resultColumnsListView.SmallImageList   = this.imageListSort;
     this.resultColumnsListView.TabIndex         = 2;
     this.resultColumnsListView.UseCompatibleStateImageBehavior = false;
     this.resultColumnsListView.View            = System.Windows.Forms.View.Details;
     this.resultColumnsListView.AfterLabelEdit += new System.Windows.Forms.LabelEditEventHandler(this.resultColumnsListView_AfterLabelEdit);
     this.resultColumnsListView.DragDrop       += new System.Windows.Forms.DragEventHandler(this.resultColumnsListView_DragDrop);
     this.resultColumnsListView.DragEnter      += new System.Windows.Forms.DragEventHandler(this.resultColumnsListView_DragEnter);
     this.resultColumnsListView.DragOver       += new System.Windows.Forms.DragEventHandler(this.resultColumnsListView_DragOver);
     this.resultColumnsListView.KeyUp          += new System.Windows.Forms.KeyEventHandler(this.resultColumnsListView_KeyUp);
     this.resultColumnsListView.MouseDown      += new System.Windows.Forms.MouseEventHandler(this.listView_MouseDown);
     this.resultColumnsListView.MouseMove      += new System.Windows.Forms.MouseEventHandler(this.listView_MouseMove);
     //
     // imageListSort
     //
     this.imageListSort.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageListSort.ImageStream")));
     this.imageListSort.TransparentColor = System.Drawing.Color.Transparent;
     this.imageListSort.Images.SetKeyName(0, "sort_ascending.png");
     this.imageListSort.Images.SetKeyName(1, "sort_descending.png");
     //
     // TableInsertForm
     //
     this.AcceptButton        = this.cmdRefresh;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(934, 575);
     this.Controls.Add(this.resultColumnsListView);
     this.Controls.Add(this.currentColumnsListView);
     this.Controls.Add(this.filterGrid);
     this.Controls.Add(this.tableTree);
     this.Controls.Add(this.cmdClose);
     this.Controls.Add(this.cmdRefresh);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "TableInsertForm";
     this.Padding         = new System.Windows.Forms.Padding(13);
     this.ShowIcon        = false;
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "Tabelle insert/edit";
     resultColumnsContextMenuStrip.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.filterGrid)).EndInit();
     this.currentContextMenuStrip.ResumeLayout(false);
     this.ResumeLayout(false);
 }
        /// <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.Windows.Forms.ContextMenuStrip trayMenu;
      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
      this.openToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
      this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripSeparator();
      this.exitToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
      this.splitContainer1 = new System.Windows.Forms.SplitContainer();
      this.pictureBox1 = new System.Windows.Forms.PictureBox();
      this.tree = new BrightIdeasSoftware.TreeListView();
      this.cName = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
      this.fancyRenderer = new SynNotes.FancyRenderer();
      this.cSort = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
      this.treeMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
      this.imageList1 = new System.Windows.Forms.ImageList(this.components);
      this.statusBar = new System.Windows.Forms.StatusStrip();
      this.btnAdd = new System.Windows.Forms.ToolStripDropDownButton();
      this.btnPin = new System.Windows.Forms.ToolStripDropDownButton();
      this.statusText = new System.Windows.Forms.ToolStripStatusLabel();
      this.btnSync = new System.Windows.Forms.ToolStripDropDownButton();
      this.tbSearch = new System.Windows.Forms.TextBox();
      this.panelFind = new System.Windows.Forms.Panel();
      this.tbFind = new System.Windows.Forms.TextBox();
      this.btnLexer = new System.Windows.Forms.Label();
      this.tagBox = new System.Windows.Forms.TextBox();
      this.label1 = new System.Windows.Forms.Label();
      this.scEdit = new ScintillaNET.Scintilla();
      this.lexerMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
      this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
      trayMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
      trayMenu.SuspendLayout();
      ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
      this.splitContainer1.Panel1.SuspendLayout();
      this.splitContainer1.Panel2.SuspendLayout();
      this.splitContainer1.SuspendLayout();
      ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
      ((System.ComponentModel.ISupportInitialize)(this.tree)).BeginInit();
      this.statusBar.SuspendLayout();
      this.panelFind.SuspendLayout();
      this.SuspendLayout();
      // 
      // trayMenu
      // 
      trayMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.openToolStripMenuItem1,
            this.toolStripMenuItem2,
            this.exitToolStripMenuItem1});
      trayMenu.Name = "contextMenuTray";
      trayMenu.Size = new System.Drawing.Size(104, 54);
      // 
      // openToolStripMenuItem1
      // 
      this.openToolStripMenuItem1.Name = "openToolStripMenuItem1";
      this.openToolStripMenuItem1.Size = new System.Drawing.Size(103, 22);
      this.openToolStripMenuItem1.Text = "Show";
      this.openToolStripMenuItem1.Click += new System.EventHandler(this.showToolStripMenuItem1_Click);
      // 
      // toolStripMenuItem2
      // 
      this.toolStripMenuItem2.Name = "toolStripMenuItem2";
      this.toolStripMenuItem2.Size = new System.Drawing.Size(100, 6);
      // 
      // exitToolStripMenuItem1
      // 
      this.exitToolStripMenuItem1.Name = "exitToolStripMenuItem1";
      this.exitToolStripMenuItem1.Size = new System.Drawing.Size(103, 22);
      this.exitToolStripMenuItem1.Text = "Exit";
      this.exitToolStripMenuItem1.Click += new System.EventHandler(this.exitToolStripMenuItem1_Click);
      // 
      // splitContainer1
      // 
      this.splitContainer1.BackColor = System.Drawing.Color.Gainsboro;
      this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
      this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
      this.splitContainer1.Location = new System.Drawing.Point(0, 0);
      this.splitContainer1.Margin = new System.Windows.Forms.Padding(0);
      this.splitContainer1.Name = "splitContainer1";
      // 
      // splitContainer1.Panel1
      // 
      this.splitContainer1.Panel1.Controls.Add(this.pictureBox1);
      this.splitContainer1.Panel1.Controls.Add(this.tree);
      this.splitContainer1.Panel1.Controls.Add(this.statusBar);
      this.splitContainer1.Panel1.Controls.Add(this.tbSearch);
      this.splitContainer1.Panel1.RightToLeft = System.Windows.Forms.RightToLeft.No;
      // 
      // splitContainer1.Panel2
      // 
      this.splitContainer1.Panel2.Controls.Add(this.panelFind);
      this.splitContainer1.Panel2.Controls.Add(this.btnLexer);
      this.splitContainer1.Panel2.Controls.Add(this.tagBox);
      this.splitContainer1.Panel2.Controls.Add(this.label1);
      this.splitContainer1.Panel2.Controls.Add(this.scEdit);
      this.splitContainer1.Panel2.RightToLeft = System.Windows.Forms.RightToLeft.No;
      this.splitContainer1.Size = new System.Drawing.Size(1014, 646);
      this.splitContainer1.SplitterDistance = 227;
      this.splitContainer1.TabIndex = 0;
      this.splitContainer1.TabStop = false;
      // 
      // pictureBox1
      // 
      this.pictureBox1.BackColor = System.Drawing.SystemColors.Window;
      this.pictureBox1.ErrorImage = null;
      this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
      this.pictureBox1.InitialImage = null;
      this.pictureBox1.Location = new System.Drawing.Point(0, 0);
      this.pictureBox1.Margin = new System.Windows.Forms.Padding(0, 0, 0, 4);
      this.pictureBox1.Name = "pictureBox1";
      this.pictureBox1.Padding = new System.Windows.Forms.Padding(0, 1, 0, 0);
      this.pictureBox1.Size = new System.Drawing.Size(16, 19);
      this.pictureBox1.TabIndex = 5;
      this.pictureBox1.TabStop = false;
      // 
      // tree
      // 
      this.tree.AllColumns.Add(this.cName);
      this.tree.AllColumns.Add(this.cSort);
      this.tree.AlternateRowBackColor = System.Drawing.SystemColors.Window;
      this.tree.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.tree.BackColor = System.Drawing.SystemColors.Control;
      this.tree.BorderStyle = System.Windows.Forms.BorderStyle.None;
      this.tree.CellEditActivation = BrightIdeasSoftware.ObjectListView.CellEditActivateMode.SingleClick;
      this.tree.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.cName});
      this.tree.ContextMenuStrip = this.treeMenu;
      this.tree.CopySelectionOnControlC = false;
      this.tree.EmptyListMsg = "";
      this.tree.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
      this.tree.FullRowSelect = true;
      this.tree.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
      this.tree.HideSelection = false;
      this.tree.HighlightBackgroundColor = System.Drawing.SystemColors.Highlight;
      this.tree.HighlightForegroundColor = System.Drawing.SystemColors.HighlightText;
      this.tree.IsSearchOnSortColumn = false;
      this.tree.Location = new System.Drawing.Point(0, 23);
      this.tree.Margin = new System.Windows.Forms.Padding(0);
      this.tree.Name = "tree";
      this.tree.OwnerDraw = true;
      this.tree.SelectAllOnControlA = false;
      this.tree.ShowGroups = false;
      this.tree.ShowHeaderInAllViews = false;
      this.tree.Size = new System.Drawing.Size(227, 602);
      this.tree.SmallImageList = this.imageList1;
      this.tree.TabIndex = 3;
      this.tree.TabStop = false;
      this.tree.UnfocusedHighlightBackgroundColor = System.Drawing.SystemColors.Highlight;
      this.tree.UnfocusedHighlightForegroundColor = System.Drawing.SystemColors.HighlightText;
      this.tree.UseAlternatingBackColors = true;
      this.tree.UseCompatibleStateImageBehavior = false;
      this.tree.UseNotifyPropertyChanged = true;
      this.tree.UseOverlays = false;
      this.tree.View = System.Windows.Forms.View.Details;
      this.tree.VirtualMode = true;
      this.tree.CellEditFinishing += new BrightIdeasSoftware.CellEditEventHandler(this.tree_CellEditFinishing);
      this.tree.CellEditStarting += new BrightIdeasSoftware.CellEditEventHandler(this.tree_CellEditStarting);
      this.tree.CellEditValidating += new BrightIdeasSoftware.CellEditEventHandler(this.tree_CellEditValidating);
      this.tree.CellClick += new System.EventHandler<BrightIdeasSoftware.CellClickEventArgs>(this.tree_CellClick);
      this.tree.CellRightClick += new System.EventHandler<BrightIdeasSoftware.CellRightClickEventArgs>(this.tree_CellRightClick);
      this.tree.ModelCanDrop += new System.EventHandler<BrightIdeasSoftware.ModelDropEventArgs>(this.tree_ModelCanDrop);
      this.tree.ModelDropped += new System.EventHandler<BrightIdeasSoftware.ModelDropEventArgs>(this.tree_ModelDropped);
      this.tree.SelectionChanged += new System.EventHandler(this.tree_SelectionChanged);
      this.tree.ItemActivate += new System.EventHandler(this.tree_ItemActivate);
      this.tree.ItemDrag += new System.Windows.Forms.ItemDragEventHandler(this.tree_ItemDrag);
      this.tree.MouseClick += new System.Windows.Forms.MouseEventHandler(this.tree_MouseClick);
      // 
      // cName
      // 
      this.cName.AspectName = "Name";
      this.cName.AutoCompleteEditor = false;
      this.cName.AutoCompleteEditorMode = System.Windows.Forms.AutoCompleteMode.None;
      this.cName.FillsFreeSpace = true;
      this.cName.Renderer = this.fancyRenderer;
      this.cName.Text = "Name";
      // 
      // cSort
      // 
      this.cSort.AspectName = "";
      this.cSort.AutoCompleteEditor = false;
      this.cSort.AutoCompleteEditorMode = System.Windows.Forms.AutoCompleteMode.None;
      this.cSort.DisplayIndex = 2;
      this.cSort.IsEditable = false;
      this.cSort.IsVisible = false;
      this.cSort.Searchable = false;
      this.cSort.Text = "Sort";
      this.cSort.UseFiltering = false;
      this.cSort.Width = 30;
      // 
      // treeMenu
      // 
      this.treeMenu.Name = "treeMenu";
      this.treeMenu.Size = new System.Drawing.Size(61, 4);
      // 
      // imageList1
      // 
      this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
      this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
      this.imageList1.Images.SetKeyName(0, "add");
      this.imageList1.Images.SetKeyName(1, "settings");
      this.imageList1.Images.SetKeyName(2, "open.png");
      this.imageList1.Images.SetKeyName(3, "close");
      this.imageList1.Images.SetKeyName(4, "all.png");
      this.imageList1.Images.SetKeyName(5, "trash.png");
      this.imageList1.Images.SetKeyName(6, "pinsmall.png");
      this.imageList1.Images.SetKeyName(7, "pinsmall_i.png");
      this.imageList1.Images.SetKeyName(8, "open_i.png");
      this.imageList1.Images.SetKeyName(9, "close_i.png");
      // 
      // statusBar
      // 
      this.statusBar.BackColor = System.Drawing.SystemColors.Control;
      this.statusBar.GripMargin = new System.Windows.Forms.Padding(0);
      this.statusBar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.btnAdd,
            this.btnPin,
            this.statusText,
            this.btnSync});
      this.statusBar.Location = new System.Drawing.Point(0, 624);
      this.statusBar.Name = "statusBar";
      this.statusBar.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional;
      this.statusBar.ShowItemToolTips = true;
      this.statusBar.Size = new System.Drawing.Size(227, 22);
      this.statusBar.SizingGrip = false;
      this.statusBar.TabIndex = 3;
      // 
      // btnAdd
      // 
      this.btnAdd.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
      this.btnAdd.Image = ((System.Drawing.Image)(resources.GetObject("btnAdd.Image")));
      this.btnAdd.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.btnAdd.ImageTransparentColor = System.Drawing.Color.Magenta;
      this.btnAdd.Margin = new System.Windows.Forms.Padding(0, 1, 0, 0);
      this.btnAdd.MergeIndex = -2;
      this.btnAdd.Name = "btnAdd";
      this.btnAdd.Overflow = System.Windows.Forms.ToolStripItemOverflow.Never;
      this.btnAdd.ShowDropDownArrow = false;
      this.btnAdd.Size = new System.Drawing.Size(20, 21);
      this.btnAdd.Text = "Add Note (F7)";
      this.btnAdd.Click += new System.EventHandler(this.btnAdd_ButtonClick);
      // 
      // btnPin
      // 
      this.btnPin.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
      this.btnPin.Image = ((System.Drawing.Image)(resources.GetObject("btnPin.Image")));
      this.btnPin.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.btnPin.ImageTransparentColor = System.Drawing.Color.Magenta;
      this.btnPin.Margin = new System.Windows.Forms.Padding(0, 1, 0, 0);
      this.btnPin.Name = "btnPin";
      this.btnPin.ShowDropDownArrow = false;
      this.btnPin.Size = new System.Drawing.Size(20, 21);
      this.btnPin.Text = "Pin Note";
      this.btnPin.Click += new System.EventHandler(this.btnPin_Click);
      // 
      // statusText
      // 
      this.statusText.Name = "statusText";
      this.statusText.Size = new System.Drawing.Size(152, 17);
      this.statusText.Spring = true;
      // 
      // btnSync
      // 
      this.btnSync.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
      this.btnSync.BackColor = System.Drawing.SystemColors.Control;
      this.btnSync.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
      this.btnSync.DoubleClickEnabled = true;
      this.btnSync.Image = ((System.Drawing.Image)(resources.GetObject("btnSync.Image")));
      this.btnSync.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.btnSync.ImageTransparentColor = System.Drawing.Color.Magenta;
      this.btnSync.Margin = new System.Windows.Forms.Padding(0, 1, 0, 0);
      this.btnSync.Name = "btnSync";
      this.btnSync.ShowDropDownArrow = false;
      this.btnSync.Size = new System.Drawing.Size(20, 21);
      this.btnSync.Text = "Sync (RightClick for Settings)";
      this.btnSync.MouseDown += new System.Windows.Forms.MouseEventHandler(this.btnSync_MouseDown);
      // 
      // tbSearch
      // 
      this.tbSearch.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.tbSearch.BackColor = System.Drawing.SystemColors.Window;
      this.tbSearch.BorderStyle = System.Windows.Forms.BorderStyle.None;
      this.tbSearch.Font = new System.Drawing.Font("Calibri", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
      this.tbSearch.ForeColor = System.Drawing.SystemColors.GrayText;
      this.tbSearch.Location = new System.Drawing.Point(16, 0);
      this.tbSearch.Margin = new System.Windows.Forms.Padding(0, 0, 0, 4);
      this.tbSearch.MaxLength = 255;
      this.tbSearch.Name = "tbSearch";
      this.tbSearch.Size = new System.Drawing.Size(211, 19);
      this.tbSearch.TabIndex = 1;
      this.tbSearch.Tag = "";
      this.tbSearch.Text = "Search Notes";
      this.tbSearch.TextChanged += new System.EventHandler(this.cbSearch_TextChanged);
      this.tbSearch.Enter += new System.EventHandler(this.cbSearch_Enter);
      this.tbSearch.KeyDown += new System.Windows.Forms.KeyEventHandler(this.cbSearch_KeyDown);
      this.tbSearch.Leave += new System.EventHandler(this.cbSearch_Leave);
      // 
      // panelFind
      // 
      this.panelFind.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
      this.panelFind.AutoSize = true;
      this.panelFind.Controls.Add(this.tbFind);
      this.panelFind.Location = new System.Drawing.Point(567, 0);
      this.panelFind.Name = "panelFind";
      this.panelFind.Padding = new System.Windows.Forms.Padding(3, 0, 0, 3);
      this.panelFind.Size = new System.Drawing.Size(200, 27);
      this.panelFind.TabIndex = 3;
      this.panelFind.Visible = false;
      // 
      // tbFind
      // 
      this.tbFind.BorderStyle = System.Windows.Forms.BorderStyle.None;
      this.tbFind.Dock = System.Windows.Forms.DockStyle.Fill;
      this.tbFind.Font = new System.Drawing.Font("Calibri", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
      this.tbFind.Location = new System.Drawing.Point(3, 0);
      this.tbFind.Name = "tbFind";
      this.tbFind.Size = new System.Drawing.Size(197, 19);
      this.tbFind.TabIndex = 0;
      this.tbFind.TextChanged += new System.EventHandler(this.tbFind_TextChanged);
      // 
      // btnLexer
      // 
      this.btnLexer.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
      this.btnLexer.BackColor = System.Drawing.SystemColors.Window;
      this.btnLexer.Cursor = System.Windows.Forms.Cursors.Hand;
      this.btnLexer.Location = new System.Drawing.Point(683, 623);
      this.btnLexer.Margin = new System.Windows.Forms.Padding(0);
      this.btnLexer.Name = "btnLexer";
      this.btnLexer.Size = new System.Drawing.Size(100, 24);
      this.btnLexer.TabIndex = 0;
      this.btnLexer.Text = "Lexer";
      this.btnLexer.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
      this.btnLexer.UseMnemonic = false;
      this.btnLexer.MouseClick += new System.Windows.Forms.MouseEventHandler(this.btnLexer_Click);
      // 
      // tagBox
      // 
      this.tagBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
      this.tagBox.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
      this.tagBox.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.CustomSource;
      this.tagBox.BackColor = System.Drawing.SystemColors.Window;
      this.tagBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
      this.tagBox.Location = new System.Drawing.Point(37, 630);
      this.tagBox.Margin = new System.Windows.Forms.Padding(0);
      this.tagBox.Name = "tagBox";
      this.tagBox.Size = new System.Drawing.Size(646, 13);
      this.tagBox.TabIndex = 1;
      this.tagBox.TabStop = false;
      this.tagBox.TextChanged += new System.EventHandler(this.tagBox_TextChanged);
      this.tagBox.Enter += new System.EventHandler(this.tagBox_Enter);
      this.tagBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tagBox_KeyDown);
      // 
      // label1
      // 
      this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
      this.label1.BackColor = System.Drawing.SystemColors.Window;
      this.label1.Location = new System.Drawing.Point(0, 624);
      this.label1.Margin = new System.Windows.Forms.Padding(0);
      this.label1.Name = "label1";
      this.label1.Size = new System.Drawing.Size(683, 22);
      this.label1.TabIndex = 2;
      this.label1.Text = "Tags:";
      this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
      // 
      // scEdit
      // 
      this.scEdit.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.scEdit.AutoCDropRestOfWord = true;
      this.scEdit.AutoCIgnoreCase = true;
      this.scEdit.AutoCMaxHeight = 10;
      this.scEdit.AutomaticFold = ((ScintillaNET.AutomaticFold)(((ScintillaNET.AutomaticFold.Show | ScintillaNET.AutomaticFold.Click) 
            | ScintillaNET.AutomaticFold.Change)));
      this.scEdit.BorderStyle = System.Windows.Forms.BorderStyle.None;
      this.scEdit.CaretLineBackColor = System.Drawing.Color.LightYellow;
      this.scEdit.CaretLineVisible = true;
      this.scEdit.CaretWidth = 2;
      this.scEdit.IndentationGuides = ScintillaNET.IndentView.Real;
      this.scEdit.Location = new System.Drawing.Point(0, 0);
      this.scEdit.Margin = new System.Windows.Forms.Padding(0);
      this.scEdit.MouseSelectionRectangularSwitch = true;
      this.scEdit.Name = "scEdit";
      this.scEdit.Size = new System.Drawing.Size(783, 624);
      this.scEdit.TabIndex = 2;
      this.scEdit.TabWidth = 2;
      this.scEdit.UseTabs = false;
      this.scEdit.WrapIndentMode = ScintillaNET.WrapIndentMode.Indent;
      this.scEdit.WrapMode = ScintillaNET.WrapMode.Word;
      this.scEdit.WrapVisualFlags = ScintillaNET.WrapVisualFlags.End;
      this.scEdit.SavePointLeft += new System.EventHandler<System.EventArgs>(this.scEdit_SavePointLeft);
      this.scEdit.UpdateUI += new System.EventHandler<ScintillaNET.UpdateUIEventArgs>(this.scEdit_UpdateUI);
      // 
      // lexerMenu
      // 
      this.lexerMenu.Name = "lexerMenu";
      this.lexerMenu.ShowCheckMargin = true;
      this.lexerMenu.ShowImageMargin = false;
      this.lexerMenu.Size = new System.Drawing.Size(61, 4);
      this.lexerMenu.Opening += new System.ComponentModel.CancelEventHandler(this.lexerMenu_Opening);
      // 
      // notifyIcon1
      // 
      this.notifyIcon1.ContextMenuStrip = trayMenu;
      this.notifyIcon1.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon")));
      this.notifyIcon1.Text = "SynNotes";
      this.notifyIcon1.Visible = true;
      this.notifyIcon1.Click += new System.EventHandler(this.notifyIcon1_Click);
      // 
      // Form1
      // 
      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
      this.ClientSize = new System.Drawing.Size(1014, 646);
      this.Controls.Add(this.splitContainer1);
      this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
      this.KeyPreview = true;
      this.Name = "Form1";
      this.Text = "SynNotes";
      this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
      this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.Form1_FormClosed);
      this.Shown += new System.EventHandler(this.Form1_Shown);
      this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Form1_KeyDown);
      this.Move += new System.EventHandler(this.Form1_Move);
      this.Resize += new System.EventHandler(this.Form1_Resize);
      trayMenu.ResumeLayout(false);
      this.splitContainer1.Panel1.ResumeLayout(false);
      this.splitContainer1.Panel1.PerformLayout();
      this.splitContainer1.Panel2.ResumeLayout(false);
      this.splitContainer1.Panel2.PerformLayout();
      ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
      this.splitContainer1.ResumeLayout(false);
      ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
      ((System.ComponentModel.ISupportInitialize)(this.tree)).EndInit();
      this.statusBar.ResumeLayout(false);
      this.statusBar.PerformLayout();
      this.panelFind.ResumeLayout(false);
      this.panelFind.PerformLayout();
      this.ResumeLayout(false);

        }
Esempio n. 20
0
 /// <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.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
     System.Windows.Forms.Label            label1;
     System.Windows.Forms.Label            label2;
     System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
     System.Windows.Forms.ContextMenuStrip contextMenuStrip2;
     this.AktivListe            = new BrightIdeasSoftware.ObjectListView();
     this.ZimmerAktiv           = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.VornameAktiv          = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.NachnameAktiv         = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.RufnameAktiv          = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.HinzufügenKnopf       = new System.Windows.Forms.Button();
     this.InaktivListe          = new BrightIdeasSoftware.ObjectListView();
     this.ZimmerInaktiv         = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.VornameInaktiv        = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.NachnameInaktiv       = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.RufnameInaktiv        = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.AktivierenKnopf       = new System.Windows.Forms.Button();
     this.DeaktivierenKnopf     = new System.Windows.Forms.Button();
     this.AnzeigenOptionAktiv   = new System.Windows.Forms.ToolStripMenuItem();
     this.AnzeigenOptionInaktiv = new System.Windows.Forms.ToolStripMenuItem();
     tableLayoutPanel1          = new System.Windows.Forms.TableLayoutPanel();
     label1            = new System.Windows.Forms.Label();
     label2            = new System.Windows.Forms.Label();
     contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     contextMenuStrip2 = new System.Windows.Forms.ContextMenuStrip(this.components);
     tableLayoutPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.AktivListe)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.InaktivListe)).BeginInit();
     contextMenuStrip1.SuspendLayout();
     contextMenuStrip2.SuspendLayout();
     this.SuspendLayout();
     //
     // tableLayoutPanel1
     //
     tableLayoutPanel1.ColumnCount = 3;
     tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 25F));
     tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     tableLayoutPanel1.Controls.Add(this.AktivListe, 0, 1);
     tableLayoutPanel1.Controls.Add(this.HinzufügenKnopf, 1, 3);
     tableLayoutPanel1.Controls.Add(this.InaktivListe, 2, 1);
     tableLayoutPanel1.Controls.Add(label1, 0, 0);
     tableLayoutPanel1.Controls.Add(label2, 2, 0);
     tableLayoutPanel1.Controls.Add(this.AktivierenKnopf, 1, 2);
     tableLayoutPanel1.Controls.Add(this.DeaktivierenKnopf, 1, 4);
     tableLayoutPanel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     tableLayoutPanel1.Name     = "tableLayoutPanel1";
     tableLayoutPanel1.Padding  = new System.Windows.Forms.Padding(10);
     tableLayoutPanel1.RowCount = 6;
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 31F));
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 31F));
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 31F));
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     tableLayoutPanel1.Size     = new System.Drawing.Size(684, 561);
     tableLayoutPanel1.TabIndex = 0;
     //
     // AktivListe
     //
     this.AktivListe.AllColumns.Add(this.ZimmerAktiv);
     this.AktivListe.AllColumns.Add(this.VornameAktiv);
     this.AktivListe.AllColumns.Add(this.NachnameAktiv);
     this.AktivListe.AllColumns.Add(this.RufnameAktiv);
     this.AktivListe.AlternateRowBackColor = System.Drawing.SystemColors.ButtonFace;
     this.AktivListe.CellEditActivation    = BrightIdeasSoftware.ObjectListView.CellEditActivateMode.DoubleClick;
     this.AktivListe.CellEditUseWholeCell  = false;
     this.AktivListe.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.ZimmerAktiv,
         this.VornameAktiv,
         this.NachnameAktiv,
         this.RufnameAktiv
     });
     this.AktivListe.ContextMenuStrip = contextMenuStrip1;
     this.AktivListe.Cursor           = System.Windows.Forms.Cursors.Default;
     this.AktivListe.Dock             = System.Windows.Forms.DockStyle.Fill;
     this.AktivListe.FullRowSelect    = true;
     this.AktivListe.Location         = new System.Drawing.Point(13, 33);
     this.AktivListe.Name             = "AktivListe";
     tableLayoutPanel1.SetRowSpan(this.AktivListe, 5);
     this.AktivListe.SelectColumnsOnRightClick          = false;
     this.AktivListe.SelectColumnsOnRightClickBehaviour = BrightIdeasSoftware.ObjectListView.ColumnSelectBehaviour.None;
     this.AktivListe.ShowGroups         = false;
     this.AktivListe.ShowSortIndicators = false;
     this.AktivListe.Size     = new System.Drawing.Size(313, 515);
     this.AktivListe.TabIndex = 6;
     this.AktivListe.UseAlternatingBackColors        = true;
     this.AktivListe.UseCompatibleStateImageBehavior = false;
     this.AktivListe.UseFiltering      = true;
     this.AktivListe.View              = System.Windows.Forms.View.Details;
     this.AktivListe.CellEditFinished += new BrightIdeasSoftware.CellEditEventHandler(this.AktivListe_CellEditFinished);
     //
     // ZimmerAktiv
     //
     this.ZimmerAktiv.AspectName           = "Zimmernummer";
     this.ZimmerAktiv.AspectToStringFormat = "{0}";
     this.ZimmerAktiv.CellEditUseWholeCell = true;
     this.ZimmerAktiv.Text      = "Zimmer";
     this.ZimmerAktiv.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.ZimmerAktiv.Width     = 50;
     //
     // VornameAktiv
     //
     this.VornameAktiv.AspectName           = "Vorname";
     this.VornameAktiv.AspectToStringFormat = "{0}";
     this.VornameAktiv.CellEditUseWholeCell = true;
     this.VornameAktiv.Text  = "Vorname";
     this.VornameAktiv.Width = 80;
     //
     // NachnameAktiv
     //
     this.NachnameAktiv.AspectName           = "Nachname";
     this.NachnameAktiv.AspectToStringFormat = "{0}";
     this.NachnameAktiv.CellEditUseWholeCell = true;
     this.NachnameAktiv.FillsFreeSpace       = true;
     this.NachnameAktiv.Text  = "Nachname";
     this.NachnameAktiv.Width = 100;
     //
     // RufnameAktiv
     //
     this.RufnameAktiv.AspectName           = "Rufname";
     this.RufnameAktiv.AspectToStringFormat = "{0}";
     this.RufnameAktiv.CellEditUseWholeCell = true;
     this.RufnameAktiv.Text  = "Rufname";
     this.RufnameAktiv.Width = 100;
     //
     // HinzufügenKnopf
     //
     this.HinzufügenKnopf.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.HinzufügenKnopf.Location = new System.Drawing.Point(329, 275);
     this.HinzufügenKnopf.Margin   = new System.Windows.Forms.Padding(0);
     this.HinzufügenKnopf.Name     = "HinzufügenKnopf";
     this.HinzufügenKnopf.Size     = new System.Drawing.Size(25, 31);
     this.HinzufügenKnopf.TabIndex = 2;
     this.HinzufügenKnopf.Text     = "+";
     this.HinzufügenKnopf.UseVisualStyleBackColor = true;
     this.HinzufügenKnopf.Click += new System.EventHandler(this.HinzufügenKnopf_Click);
     //
     // InaktivListe
     //
     this.InaktivListe.AllColumns.Add(this.ZimmerInaktiv);
     this.InaktivListe.AllColumns.Add(this.VornameInaktiv);
     this.InaktivListe.AllColumns.Add(this.NachnameInaktiv);
     this.InaktivListe.AllColumns.Add(this.RufnameInaktiv);
     this.InaktivListe.AlternateRowBackColor = System.Drawing.SystemColors.ButtonFace;
     this.InaktivListe.CellEditActivation    = BrightIdeasSoftware.ObjectListView.CellEditActivateMode.DoubleClick;
     this.InaktivListe.CellEditUseWholeCell  = false;
     this.InaktivListe.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.ZimmerInaktiv,
         this.VornameInaktiv,
         this.NachnameInaktiv,
         this.RufnameInaktiv
     });
     this.InaktivListe.ContextMenuStrip = contextMenuStrip2;
     this.InaktivListe.Cursor           = System.Windows.Forms.Cursors.Default;
     this.InaktivListe.Dock             = System.Windows.Forms.DockStyle.Fill;
     this.InaktivListe.FullRowSelect    = true;
     this.InaktivListe.Location         = new System.Drawing.Point(357, 33);
     this.InaktivListe.Name             = "InaktivListe";
     tableLayoutPanel1.SetRowSpan(this.InaktivListe, 5);
     this.InaktivListe.SelectColumnsOnRightClick          = false;
     this.InaktivListe.SelectColumnsOnRightClickBehaviour = BrightIdeasSoftware.ObjectListView.ColumnSelectBehaviour.None;
     this.InaktivListe.ShowGroups         = false;
     this.InaktivListe.ShowSortIndicators = false;
     this.InaktivListe.Size     = new System.Drawing.Size(314, 515);
     this.InaktivListe.TabIndex = 3;
     this.InaktivListe.UseAlternatingBackColors        = true;
     this.InaktivListe.UseCompatibleStateImageBehavior = false;
     this.InaktivListe.UseFiltering      = true;
     this.InaktivListe.View              = System.Windows.Forms.View.Details;
     this.InaktivListe.CellEditFinished += new BrightIdeasSoftware.CellEditEventHandler(this.InaktivListe_CellEditFinished);
     //
     // ZimmerInaktiv
     //
     this.ZimmerInaktiv.AspectName           = "Zimmernummer";
     this.ZimmerInaktiv.AspectToStringFormat = "{0}";
     this.ZimmerInaktiv.CellEditUseWholeCell = true;
     this.ZimmerInaktiv.Text      = "Zimmer";
     this.ZimmerInaktiv.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.ZimmerInaktiv.Width     = 50;
     //
     // VornameInaktiv
     //
     this.VornameInaktiv.AspectName           = "Vorname";
     this.VornameInaktiv.AspectToStringFormat = "{0}";
     this.VornameInaktiv.CellEditUseWholeCell = true;
     this.VornameInaktiv.Text  = "Vorname";
     this.VornameInaktiv.Width = 80;
     //
     // NachnameInaktiv
     //
     this.NachnameInaktiv.AspectName           = "Nachname";
     this.NachnameInaktiv.AspectToStringFormat = "{0}";
     this.NachnameInaktiv.CellEditUseWholeCell = true;
     this.NachnameInaktiv.FillsFreeSpace       = true;
     this.NachnameInaktiv.Text  = "Nachname";
     this.NachnameInaktiv.Width = 100;
     //
     // RufnameInaktiv
     //
     this.RufnameInaktiv.AspectName           = "Rufname";
     this.RufnameInaktiv.AspectToStringFormat = "{0}";
     this.RufnameInaktiv.CellEditUseWholeCell = true;
     this.RufnameInaktiv.Text  = "Rufname";
     this.RufnameInaktiv.Width = 100;
     //
     // label1
     //
     label1.AutoSize  = true;
     label1.Dock      = System.Windows.Forms.DockStyle.Fill;
     label1.Location  = new System.Drawing.Point(13, 10);
     label1.Name      = "label1";
     label1.Size      = new System.Drawing.Size(313, 20);
     label1.TabIndex  = 4;
     label1.Text      = "Aktive Benutzer";
     label1.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // label2
     //
     label2.AutoSize  = true;
     label2.Dock      = System.Windows.Forms.DockStyle.Fill;
     label2.Location  = new System.Drawing.Point(357, 10);
     label2.Name      = "label2";
     label2.Size      = new System.Drawing.Size(314, 20);
     label2.TabIndex  = 5;
     label2.Text      = "Inaktive Benutzer";
     label2.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // AktivierenKnopf
     //
     this.AktivierenKnopf.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.AktivierenKnopf.Location = new System.Drawing.Point(329, 244);
     this.AktivierenKnopf.Margin   = new System.Windows.Forms.Padding(0);
     this.AktivierenKnopf.Name     = "AktivierenKnopf";
     this.AktivierenKnopf.Size     = new System.Drawing.Size(25, 31);
     this.AktivierenKnopf.TabIndex = 7;
     this.AktivierenKnopf.Text     = "<-";
     this.AktivierenKnopf.UseVisualStyleBackColor = true;
     this.AktivierenKnopf.Click += new System.EventHandler(this.AktivierenKnopf_Click);
     //
     // DeaktivierenKnopf
     //
     this.DeaktivierenKnopf.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.DeaktivierenKnopf.Location = new System.Drawing.Point(329, 306);
     this.DeaktivierenKnopf.Margin   = new System.Windows.Forms.Padding(0);
     this.DeaktivierenKnopf.Name     = "DeaktivierenKnopf";
     this.DeaktivierenKnopf.Size     = new System.Drawing.Size(25, 31);
     this.DeaktivierenKnopf.TabIndex = 8;
     this.DeaktivierenKnopf.Text     = "->";
     this.DeaktivierenKnopf.UseVisualStyleBackColor = true;
     this.DeaktivierenKnopf.Click += new System.EventHandler(this.DeaktivierenKnopf_Click);
     //
     // contextMenuStrip1
     //
     contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.AnzeigenOptionAktiv
     });
     contextMenuStrip1.Name            = "contextMenuStrip1";
     contextMenuStrip1.ShowImageMargin = false;
     contextMenuStrip1.Size            = new System.Drawing.Size(108, 26);
     //
     // AnzeigenOptionAktiv
     //
     this.AnzeigenOptionAktiv.Name   = "AnzeigenOptionAktiv";
     this.AnzeigenOptionAktiv.Size   = new System.Drawing.Size(127, 22);
     this.AnzeigenOptionAktiv.Text   = "Anzeigen...";
     this.AnzeigenOptionAktiv.Click += new System.EventHandler(this.AnzeigenOptionAktiv_Click);
     //
     // contextMenuStrip2
     //
     contextMenuStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.AnzeigenOptionInaktiv
     });
     contextMenuStrip2.Name            = "contextMenuStrip1";
     contextMenuStrip2.ShowImageMargin = false;
     contextMenuStrip2.Size            = new System.Drawing.Size(128, 48);
     //
     // AnzeigenOptionInaktiv
     //
     this.AnzeigenOptionInaktiv.Name   = "AnzeigenOptionInaktiv";
     this.AnzeigenOptionInaktiv.Size   = new System.Drawing.Size(127, 22);
     this.AnzeigenOptionInaktiv.Text   = "Anzeigen...";
     this.AnzeigenOptionInaktiv.Click += new System.EventHandler(this.AnzeigenOptionInaktiv_Click);
     //
     // BenutzerListefenster
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.ClientSize          = new System.Drawing.Size(684, 561);
     this.Controls.Add(tableLayoutPanel1);
     this.Name         = "BenutzerListefenster";
     this.Text         = "Benutzer Verwalten";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.BenutzerListefenster_FormClosing);
     this.Load        += new System.EventHandler(this.BenutzerListefenster_Load);
     tableLayoutPanel1.ResumeLayout(false);
     tableLayoutPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.AktivListe)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.InaktivListe)).EndInit();
     contextMenuStrip1.ResumeLayout(false);
     contextMenuStrip2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Esempio n. 21
0
 /// <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.Windows.Forms.ContextMenuStrip _InfoCM;
     System.Windows.Forms.MenuStrip        _MainMS;
     this.clearToolStripMenuItem    = new System.Windows.Forms.ToolStripMenuItem();
     this.settingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this._InfoLB      = new System.Windows.Forms.ListBox();
     this._SectorizeBT = new System.Windows.Forms.Button();
     this._SectorsTB   = new System.Windows.Forms.TextBox();
     this.comboBox1    = new System.Windows.Forms.ComboBox();
     this.label1       = new System.Windows.Forms.Label();
     this.panel1       = new System.Windows.Forms.Panel();
     this.label2       = new System.Windows.Forms.Label();
     this.lan1Info     = new System.Windows.Forms.Label();
     this.lan2Info     = new System.Windows.Forms.Label();
     this.label4       = new System.Windows.Forms.Label();
     _InfoCM           = new System.Windows.Forms.ContextMenuStrip(this.components);
     _MainMS           = new System.Windows.Forms.MenuStrip();
     _InfoCM.SuspendLayout();
     _MainMS.SuspendLayout();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // _InfoCM
     //
     _InfoCM.ImageScalingSize = new System.Drawing.Size(20, 20);
     _InfoCM.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.clearToolStripMenuItem
     });
     _InfoCM.Name = "_InfoCM";
     _InfoCM.Size = new System.Drawing.Size(113, 28);
     //
     // clearToolStripMenuItem
     //
     this.clearToolStripMenuItem.Name   = "clearToolStripMenuItem";
     this.clearToolStripMenuItem.Size   = new System.Drawing.Size(112, 24);
     this.clearToolStripMenuItem.Text   = "Clear";
     this.clearToolStripMenuItem.Click += new System.EventHandler(this.clearToolStripMenuItem_Click);
     //
     // _MainMS
     //
     _MainMS.ImageScalingSize = new System.Drawing.Size(20, 20);
     _MainMS.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.settingsToolStripMenuItem
     });
     _MainMS.Location = new System.Drawing.Point(0, 0);
     _MainMS.Name     = "_MainMS";
     _MainMS.Size     = new System.Drawing.Size(696, 28);
     _MainMS.TabIndex = 8;
     _MainMS.Text     = "menuStrip1";
     //
     // settingsToolStripMenuItem
     //
     this.settingsToolStripMenuItem.Name   = "settingsToolStripMenuItem";
     this.settingsToolStripMenuItem.Size   = new System.Drawing.Size(106, 24);
     this.settingsToolStripMenuItem.Text   = "Propiedades";
     this.settingsToolStripMenuItem.Click += new System.EventHandler(this.settingsToolStripMenuItem_Click);
     //
     // _InfoLB
     //
     this._InfoLB.ContextMenuStrip  = _InfoCM;
     this._InfoLB.FormattingEnabled = true;
     this._InfoLB.ItemHeight        = 16;
     this._InfoLB.Location          = new System.Drawing.Point(4, 181);
     this._InfoLB.Margin            = new System.Windows.Forms.Padding(4);
     this._InfoLB.Name     = "_InfoLB";
     this._InfoLB.Size     = new System.Drawing.Size(641, 420);
     this._InfoLB.TabIndex = 5;
     //
     // _SectorizeBT
     //
     this._SectorizeBT.Location = new System.Drawing.Point(545, 145);
     this._SectorizeBT.Margin   = new System.Windows.Forms.Padding(4);
     this._SectorizeBT.Name     = "_SectorizeBT";
     this._SectorizeBT.Size     = new System.Drawing.Size(100, 28);
     this._SectorizeBT.TabIndex = 4;
     this._SectorizeBT.Text     = "Enviar";
     this._SectorizeBT.UseVisualStyleBackColor = true;
     this._SectorizeBT.Click += new System.EventHandler(this._SectorizeBT_Click);
     //
     // _SectorsTB
     //
     this._SectorsTB.Location = new System.Drawing.Point(20, 115);
     this._SectorsTB.Margin   = new System.Windows.Forms.Padding(4);
     this._SectorsTB.Name     = "_SectorsTB";
     this._SectorsTB.Size     = new System.Drawing.Size(625, 22);
     this._SectorsTB.TabIndex = 3;
     //
     // comboBox1
     //
     this.comboBox1.FormattingEnabled = true;
     this.comboBox1.Location          = new System.Drawing.Point(252, 82);
     this.comboBox1.Margin            = new System.Windows.Forms.Padding(4);
     this.comboBox1.Name                  = "comboBox1";
     this.comboBox1.Size                  = new System.Drawing.Size(393, 24);
     this.comboBox1.TabIndex              = 9;
     this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.OnPresectChange);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(16, 82);
     this.label1.Margin   = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(186, 17);
     this.label1.TabIndex = 10;
     this.label1.Text     = "Sectorizaciones Preparadas";
     //
     // panel1
     //
     this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel1.Controls.Add(this.lan2Info);
     this.panel1.Controls.Add(this.label4);
     this.panel1.Controls.Add(this.lan1Info);
     this.panel1.Controls.Add(this.label2);
     this.panel1.Controls.Add(this.label1);
     this.panel1.Controls.Add(this.comboBox1);
     this.panel1.Controls.Add(this._SectorizeBT);
     this.panel1.Controls.Add(this._InfoLB);
     this.panel1.Controls.Add(this._SectorsTB);
     this.panel1.Location = new System.Drawing.Point(23, 33);
     this.panel1.Margin   = new System.Windows.Forms.Padding(4);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(657, 607);
     this.panel1.TabIndex = 11;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(20, 23);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(40, 17);
     this.label2.TabIndex = 11;
     this.label2.Text     = "Lan1";
     //
     // lan1Info
     //
     this.lan1Info.AutoSize = true;
     this.lan1Info.Location = new System.Drawing.Point(66, 23);
     this.lan1Info.Name     = "lan1Info";
     this.lan1Info.Size     = new System.Drawing.Size(46, 17);
     this.lan1Info.TabIndex = 12;
     this.lan1Info.Text     = "label3";
     //
     // lan2Info
     //
     this.lan2Info.AutoSize = true;
     this.lan2Info.Location = new System.Drawing.Point(66, 51);
     this.lan2Info.Name     = "lan2Info";
     this.lan2Info.Size     = new System.Drawing.Size(46, 17);
     this.lan2Info.TabIndex = 14;
     this.lan2Info.Text     = "label3";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(20, 51);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(40, 17);
     this.label4.TabIndex = 13;
     this.label4.Text     = "Lan2";
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(696, 653);
     this.Controls.Add(_MainMS);
     this.Controls.Add(this.panel1);
     this.MainMenuStrip = _MainMS;
     this.Margin        = new System.Windows.Forms.Padding(4);
     this.Name          = "MainForm";
     this.Text          = Properties.Settings.Default.Title;// "SimulSACTA";
     _InfoCM.ResumeLayout(false);
     _MainMS.ResumeLayout(false);
     _MainMS.PerformLayout();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 22
0
 /// <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.Windows.Forms.ContextMenuStrip          trayMenu;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainFormPaintDotNet));
     this.configureToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1        = new System.Windows.Forms.ToolStripSeparator();
     this.quitToolStripMenuItem      = new System.Windows.Forms.ToolStripMenuItem();
     this.trayIcon   = new System.Windows.Forms.NotifyIcon(this.components);
     this.hideButton = new System.Windows.Forms.Button();
     this.settings   = new ScreenShooter.ScreenshotSettings();
     trayMenu        = new System.Windows.Forms.ContextMenuStrip(this.components);
     trayMenu.SuspendLayout();
     this.SuspendLayout();
     //
     // trayMenu
     //
     trayMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.configureToolStripMenuItem,
         this.toolStripSeparator1,
         this.quitToolStripMenuItem
     });
     trayMenu.Name = "trayMenu";
     trayMenu.Size = new System.Drawing.Size(140, 54);
     //
     // configureToolStripMenuItem
     //
     this.configureToolStripMenuItem.Font   = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.configureToolStripMenuItem.Name   = "configureToolStripMenuItem";
     this.configureToolStripMenuItem.Size   = new System.Drawing.Size(139, 22);
     this.configureToolStripMenuItem.Text   = "&Configure";
     this.configureToolStripMenuItem.Click += new System.EventHandler(this.configureToolStripMenuItem_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(136, 6);
     //
     // quitToolStripMenuItem
     //
     this.quitToolStripMenuItem.Name   = "quitToolStripMenuItem";
     this.quitToolStripMenuItem.Size   = new System.Drawing.Size(139, 22);
     this.quitToolStripMenuItem.Text   = "&Quit";
     this.quitToolStripMenuItem.Click += new System.EventHandler(this.quitToolStripMenuItem_Click);
     //
     // trayIcon
     //
     this.trayIcon.ContextMenuStrip  = trayMenu;
     this.trayIcon.Text              = "ScreenShooter Paint.NET Edition";
     this.trayIcon.Visible           = true;
     this.trayIcon.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.trayIcon_MouseDoubleClick);
     //
     // hideButton
     //
     this.hideButton.Anchor                  = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.hideButton.DialogResult            = System.Windows.Forms.DialogResult.Cancel;
     this.hideButton.Location                = new System.Drawing.Point(301, 34);
     this.hideButton.Name                    = "hideButton";
     this.hideButton.Size                    = new System.Drawing.Size(75, 23);
     this.hideButton.TabIndex                = 0;
     this.hideButton.Text                    = "Hide";
     this.hideButton.UseVisualStyleBackColor = true;
     this.hideButton.Click                  += new System.EventHandler(this.hideButton_Click);
     //
     // settings
     //
     this.settings.Location         = new System.Drawing.Point(12, 12);
     this.settings.Name             = "settings";
     this.settings.Size             = new System.Drawing.Size(376, 304);
     this.settings.TabIndex         = 1;
     this.settings.ScreenshotTaken += new ScreenShooter.ScreenshotSettings.ScreenshotHandler(this.settings_ScreenshotTaken);
     //
     // MainFormPaintDotNet
     //
     this.AcceptButton        = this.hideButton;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton        = this.hideButton;
     this.ClientSize          = new System.Drawing.Size(400, 328);
     this.Controls.Add(this.hideButton);
     this.Controls.Add(this.settings);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox     = false;
     this.Name            = "MainFormPaintDotNet";
     this.Text            = "ScreenShooter Paint.NET Edition";
     this.FormClosing    += new System.Windows.Forms.FormClosingEventHandler(this.MainFormPaintDotNet_FormClosing);
     trayMenu.ResumeLayout(false);
     this.ResumeLayout(false);
 }
        public MarkDownReader()
        {
            System.AppDomain.CurrentDomain.UnhandledException += UnhandledExceptionTrapper;
            System.Windows.Forms.Application.ThreadException += ThreadExceptionEventHandlerTrapper;


            this.m_TrayIcon = new System.Windows.Forms.NotifyIcon();
            
            string resourceName = this.GetType().Namespace + ".MarkdownServer.ico";
            using (System.IO.Stream stream = System.Reflection.Assembly.GetExecutingAssembly().GetManifestResourceStream(resourceName))
            {
                this.m_TrayIcon.Icon = new System.Drawing.Icon(stream);
            }


            this.m_TrayIcon.BalloonTipTitle = "Markdown Server Running HERE";
            this.m_TrayIcon.BalloonTipText = "If you exit the browser, you can close the Markdown-Server here.";
            this.m_TrayIcon.Text = "MarkdownReader Server-Instance";

            this.m_TrayIcon.DoubleClick += TrayIcon_DoubleClick;


            //Optional - Add a context menu to the TrayIcon:
            this.TrayIconContextMenu = new System.Windows.Forms.ContextMenuStrip();
            this.CloseMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.ReopenBrowserMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.TrayIconContextMenu.SuspendLayout();


            // TrayIconContextMenu
            this.TrayIconContextMenu.Items.AddRange(
                new System.Windows.Forms.ToolStripItem[] { this.ReopenBrowserMenuItem, this.CloseMenuItem }
            );
            this.TrayIconContextMenu.Name = "TrayIconContextMenu";
            this.TrayIconContextMenu.Size = new System.Drawing.Size(153, 70);

            // CloseMenuItem
            this.CloseMenuItem.Name = "CloseMenuItem";
            this.CloseMenuItem.Size = new System.Drawing.Size(152, 22);
            this.CloseMenuItem.Text = "Shutdown Markdown-Server";
            this.CloseMenuItem.Click += new System.EventHandler(this.CloseMenuItem_Click);


            this.ReopenBrowserMenuItem.Name = "CloseMenuItem";
            this.ReopenBrowserMenuItem.Size = new System.Drawing.Size(152, 22);
            this.ReopenBrowserMenuItem.Text = "Reopen the browser";
            this.ReopenBrowserMenuItem.Click += new System.EventHandler(this.ReopenBrowserMenuItem_Click);

            TrayIconContextMenu.ResumeLayout(false);
            this.m_TrayIcon.ContextMenuStrip = TrayIconContextMenu;

            InitializeComponent();


            string curDir = System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().Location);
            curDir = System.IO.Path.Combine(curDir, "..");
            curDir = System.IO.Path.Combine(curDir, "..");
            curDir = System.IO.Path.Combine(curDir, "..");
            curDir = System.IO.Path.Combine(curDir, "MarkDownReaderAndWriter");

            curDir = System.IO.Path.GetFullPath(curDir);

            this.m_ews = new EmbeddedWebServer.EmbeddedServer();
            this.m_ews.AddApplication(curDir);
        } // End Constructor 
Esempio n. 24
0
        /// <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.Windows.Forms.ContextMenuStrip cmsTray;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
            this.cmsTrayRoll = new System.Windows.Forms.ToolStripMenuItem();
            this.cmsTrayR = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.cmsTreySettings = new System.Windows.Forms.ToolStripMenuItem();
            this.cmsTrayAbout = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
            this.cmsTreyExit = new System.Windows.Forms.ToolStripMenuItem();
            this.pictureBox1 = new System.Windows.Forms.PictureBox();
            this.tTick = new System.Windows.Forms.Timer(this.components);
            this.niTrey = new System.Windows.Forms.NotifyIcon(this.components);
            this.label1 = new System.Windows.Forms.Label();
            cmsTray = new System.Windows.Forms.ContextMenuStrip(this.components);
            cmsTray.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
            this.SuspendLayout();
            // 
            // cmsTray
            // 
            cmsTray.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.cmsTrayRoll,
            this.cmsTrayR,
            this.toolStripSeparator1,
            this.cmsTreySettings,
            this.cmsTrayAbout,
            this.toolStripSeparator2,
            this.cmsTreyExit});
            cmsTray.Name = "cmsTrey";
            cmsTray.Size = new System.Drawing.Size(150, 126);
            // 
            // cmsTrayRoll
            // 
            this.cmsTrayRoll.Image = ((System.Drawing.Image)(resources.GetObject("cmsTrayRoll.Image")));
            this.cmsTrayRoll.Name = "cmsTrayRoll";
            this.cmsTrayRoll.Size = new System.Drawing.Size(149, 22);
            this.cmsTrayRoll.Text = "Свернуть";
            this.cmsTrayRoll.Click += new System.EventHandler(this.cmsTrayRoll_Click);
            // 
            // cmsTrayR
            // 
            this.cmsTrayR.Enabled = false;
            this.cmsTrayR.Image = ((System.Drawing.Image)(resources.GetObject("cmsTrayR.Image")));
            this.cmsTrayR.Name = "cmsTrayR";
            this.cmsTrayR.Size = new System.Drawing.Size(149, 22);
            this.cmsTrayR.Text = "Развернуть";
            this.cmsTrayR.Click += new System.EventHandler(this.cmsTrayR_Click);
            // 
            // toolStripSeparator1
            // 
            this.toolStripSeparator1.Name = "toolStripSeparator1";
            this.toolStripSeparator1.Size = new System.Drawing.Size(146, 6);
            // 
            // cmsTreySettings
            // 
            this.cmsTreySettings.Image = ((System.Drawing.Image)(resources.GetObject("cmsTreySettings.Image")));
            this.cmsTreySettings.Name = "cmsTreySettings";
            this.cmsTreySettings.Size = new System.Drawing.Size(149, 22);
            this.cmsTreySettings.Text = "Настройки";
            this.cmsTreySettings.Click += new System.EventHandler(this.cmsTreySettings_Click);
            // 
            // cmsTrayAbout
            // 
            this.cmsTrayAbout.Image = ((System.Drawing.Image)(resources.GetObject("cmsTrayAbout.Image")));
            this.cmsTrayAbout.Name = "cmsTrayAbout";
            this.cmsTrayAbout.Size = new System.Drawing.Size(149, 22);
            this.cmsTrayAbout.Text = "О программе";
            this.cmsTrayAbout.Click += new System.EventHandler(this.cmsTrayAbout_Click);
            // 
            // toolStripSeparator2
            // 
            this.toolStripSeparator2.Name = "toolStripSeparator2";
            this.toolStripSeparator2.Size = new System.Drawing.Size(146, 6);
            // 
            // cmsTreyExit
            // 
            this.cmsTreyExit.Image = ((System.Drawing.Image)(resources.GetObject("cmsTreyExit.Image")));
            this.cmsTreyExit.Name = "cmsTreyExit";
            this.cmsTreyExit.Size = new System.Drawing.Size(149, 22);
            this.cmsTreyExit.Text = "Закрыть";
            this.cmsTreyExit.Click += new System.EventHandler(this.cmsTreyExit_Click);
            // 
            // pictureBox1
            // 
            this.pictureBox1.BackColor = System.Drawing.Color.Black;
            this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
            this.pictureBox1.Location = new System.Drawing.Point(1, 2);
            this.pictureBox1.Name = "pictureBox1";
            this.pictureBox1.Size = new System.Drawing.Size(238, 238);
            this.pictureBox1.TabIndex = 0;
            this.pictureBox1.TabStop = false;
            this.pictureBox1.MouseMove += new System.Windows.Forms.MouseEventHandler(this.Form1_MouseMove);
            this.pictureBox1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Form1_MouseDown);
            // 
            // tTick
            // 
            this.tTick.Enabled = true;
            this.tTick.Interval = 1000;
            this.tTick.Tick += new System.EventHandler(this.timer1_Tick);
            // 
            // niTrey
            // 
            this.niTrey.BalloonTipIcon = System.Windows.Forms.ToolTipIcon.Info;
            this.niTrey.BalloonTipText = "Small clock";
            this.niTrey.ContextMenuStrip = cmsTray;
            this.niTrey.Icon = ((System.Drawing.Icon)(resources.GetObject("niTrey.Icon")));
            this.niTrey.Text = "Small clock";
            this.niTrey.Visible = true;
            // 
            // label1
            // 
            this.label1.Font = new System.Drawing.Font("Book Antiqua", 32.25F);
            this.label1.ForeColor = System.Drawing.Color.RoyalBlue;
            this.label1.Location = new System.Drawing.Point(9, 4);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(176, 51);
            this.label1.TabIndex = 1;
            this.label1.Text = "00:00:00";
            // 
            // Form1
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackColor = System.Drawing.Color.Black;
            this.ClientSize = new System.Drawing.Size(236, 241);
            this.Controls.Add(this.label1);
            this.Controls.Add(this.pictureBox1);
            this.Cursor = System.Windows.Forms.Cursors.Hand;
            this.DataBindings.Add(new System.Windows.Forms.Binding("Location", global::WATCH.Properties.Settings.Default, "Location", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
            this.Location = global::WATCH.Properties.Settings.Default.Location;
            this.Name = "Form1";
            this.ShowInTaskbar = false;
            this.Text = "Form1";
            this.TopMost = true;
            this.TransparencyKey = System.Drawing.Color.Black;
            this.Load += new System.EventHandler(this.Form1_Load);
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
            cmsTray.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
            this.ResumeLayout(false);

        }
 /// <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.Windows.Forms.ContextMenuStrip _InfoCM;
     System.Windows.Forms.MenuStrip        _MainMS;
     this.clearToolStripMenuItem    = new System.Windows.Forms.ToolStripMenuItem();
     this.settingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this._InfoLB      = new System.Windows.Forms.ListBox();
     this._SectorizeBT = new System.Windows.Forms.Button();
     this._SectorsTB   = new System.Windows.Forms.TextBox();
     this.comboBox1    = new System.Windows.Forms.ComboBox();
     this.label1       = new System.Windows.Forms.Label();
     this.panel1       = new System.Windows.Forms.Panel();
     _InfoCM           = new System.Windows.Forms.ContextMenuStrip(this.components);
     _MainMS           = new System.Windows.Forms.MenuStrip();
     _InfoCM.SuspendLayout();
     _MainMS.SuspendLayout();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // _InfoCM
     //
     _InfoCM.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.clearToolStripMenuItem
     });
     _InfoCM.Name = "_InfoCM";
     _InfoCM.Size = new System.Drawing.Size(102, 26);
     //
     // clearToolStripMenuItem
     //
     this.clearToolStripMenuItem.Name   = "clearToolStripMenuItem";
     this.clearToolStripMenuItem.Size   = new System.Drawing.Size(101, 22);
     this.clearToolStripMenuItem.Text   = "Clear";
     this.clearToolStripMenuItem.Click += new System.EventHandler(this.clearToolStripMenuItem_Click);
     //
     // _MainMS
     //
     _MainMS.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.settingsToolStripMenuItem
     });
     _MainMS.Location = new System.Drawing.Point(0, 0);
     _MainMS.Name     = "_MainMS";
     _MainMS.Size     = new System.Drawing.Size(522, 24);
     _MainMS.TabIndex = 8;
     _MainMS.Text     = "menuStrip1";
     //
     // settingsToolStripMenuItem
     //
     this.settingsToolStripMenuItem.Name   = "settingsToolStripMenuItem";
     this.settingsToolStripMenuItem.Size   = new System.Drawing.Size(84, 20);
     this.settingsToolStripMenuItem.Text   = "Propiedades";
     this.settingsToolStripMenuItem.Click += new System.EventHandler(this.settingsToolStripMenuItem_Click);
     //
     // _InfoLB
     //
     this._InfoLB.ContextMenuStrip  = _InfoCM;
     this._InfoLB.FormattingEnabled = true;
     this._InfoLB.Location          = new System.Drawing.Point(3, 114);
     this._InfoLB.Name     = "_InfoLB";
     this._InfoLB.Size     = new System.Drawing.Size(482, 186);
     this._InfoLB.TabIndex = 5;
     //
     // _SectorizeBT
     //
     this._SectorizeBT.Location = new System.Drawing.Point(410, 85);
     this._SectorizeBT.Name     = "_SectorizeBT";
     this._SectorizeBT.Size     = new System.Drawing.Size(75, 23);
     this._SectorizeBT.TabIndex = 4;
     this._SectorizeBT.Text     = "Enviar";
     this._SectorizeBT.UseVisualStyleBackColor = true;
     this._SectorizeBT.Click += new System.EventHandler(this._SectorizeBT_Click);
     //
     // _SectorsTB
     //
     this._SectorsTB.Location = new System.Drawing.Point(15, 39);
     this._SectorsTB.Name     = "_SectorsTB";
     this._SectorsTB.Size     = new System.Drawing.Size(470, 20);
     this._SectorsTB.TabIndex = 3;
     //
     // comboBox1
     //
     this.comboBox1.FormattingEnabled = true;
     this.comboBox1.Location          = new System.Drawing.Point(189, 12);
     this.comboBox1.Name                  = "comboBox1";
     this.comboBox1.Size                  = new System.Drawing.Size(296, 21);
     this.comboBox1.TabIndex              = 9;
     this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.OnPresectChange);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(12, 12);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(139, 13);
     this.label1.TabIndex = 10;
     this.label1.Text     = "Sectorizaciones Preparadas";
     //
     // panel1
     //
     this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel1.Controls.Add(this.label1);
     this.panel1.Controls.Add(this.comboBox1);
     this.panel1.Controls.Add(this._SectorizeBT);
     this.panel1.Controls.Add(this._InfoLB);
     this.panel1.Controls.Add(this._SectorsTB);
     this.panel1.Location = new System.Drawing.Point(17, 27);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(493, 311);
     this.panel1.TabIndex = 11;
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(522, 352);
     this.Controls.Add(_MainMS);
     this.Controls.Add(this.panel1);
     this.MainMenuStrip = _MainMS;
     this.Name          = "MainForm";
     this.Text          = "SimulSACTA";
     _InfoCM.ResumeLayout(false);
     _MainMS.ResumeLayout(false);
     _MainMS.PerformLayout();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 26
0
 /// <summary>
 /// デザイナー サポートに必要なメソッドです。このメソッドの内容を
 /// コード エディターで変更しないでください。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.ContextMenuStrip          conBookmark;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(BookmarksView));
     this.itmSelectTarget = new System.Windows.Forms.ToolStripMenuItem();
     this.sepBookmark1    = new System.Windows.Forms.ToolStripSeparator();
     this.itmCreateNew    = new System.Windows.Forms.ToolStripMenuItem();
     this.itmInsertAbove  = new System.Windows.Forms.ToolStripMenuItem();
     this.itmInsertBelow  = new System.Windows.Forms.ToolStripMenuItem();
     this.sepBookmark2    = new System.Windows.Forms.ToolStripSeparator();
     this.itmDelete       = new System.Windows.Forms.ToolStripMenuItem();
     this.dgvBookmarks    = new Comical.Controls.DraggableDataGridView();
     this.clmName         = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.clmTarget       = new System.Windows.Forms.DataGridViewTextBoxColumn();
     conBookmark          = new System.Windows.Forms.ContextMenuStrip(this.components);
     conBookmark.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvBookmarks)).BeginInit();
     this.SuspendLayout();
     //
     // conBookmark
     //
     resources.ApplyResources(conBookmark, "conBookmark");
     conBookmark.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.itmSelectTarget,
         this.sepBookmark1,
         this.itmCreateNew,
         this.itmInsertAbove,
         this.itmInsertBelow,
         this.sepBookmark2,
         this.itmDelete
     });
     conBookmark.Name = "conBookmark";
     //
     // itmSelectTarget
     //
     resources.ApplyResources(this.itmSelectTarget, "itmSelectTarget");
     this.itmSelectTarget.Name   = "itmSelectTarget";
     this.itmSelectTarget.Click += new System.EventHandler(this.itmSelectTarget_Click);
     //
     // sepBookmark1
     //
     resources.ApplyResources(this.sepBookmark1, "sepBookmark1");
     this.sepBookmark1.Name = "sepBookmark1";
     //
     // itmCreateNew
     //
     resources.ApplyResources(this.itmCreateNew, "itmCreateNew");
     this.itmCreateNew.Name   = "itmCreateNew";
     this.itmCreateNew.Click += new System.EventHandler(this.itmAdd_Click);
     //
     // itmInsertAbove
     //
     resources.ApplyResources(this.itmInsertAbove, "itmInsertAbove");
     this.itmInsertAbove.Name   = "itmInsertAbove";
     this.itmInsertAbove.Click += new System.EventHandler(this.itmInsertAbove_Click);
     //
     // itmInsertBelow
     //
     resources.ApplyResources(this.itmInsertBelow, "itmInsertBelow");
     this.itmInsertBelow.Name   = "itmInsertBelow";
     this.itmInsertBelow.Click += new System.EventHandler(this.itmInsertBelow_Click);
     //
     // sepBookmark2
     //
     resources.ApplyResources(this.sepBookmark2, "sepBookmark2");
     this.sepBookmark2.Name = "sepBookmark2";
     //
     // itmDelete
     //
     resources.ApplyResources(this.itmDelete, "itmDelete");
     this.itmDelete.Name   = "itmDelete";
     this.itmDelete.Click += new System.EventHandler(this.itmRemove_Click);
     //
     // dgvBookmarks
     //
     resources.ApplyResources(this.dgvBookmarks, "dgvBookmarks");
     this.dgvBookmarks.AllowDrop                   = true;
     this.dgvBookmarks.AllowUserToAddRows          = false;
     this.dgvBookmarks.AllowUserToMoveRows         = true;
     this.dgvBookmarks.AllowUserToResizeColumns    = false;
     this.dgvBookmarks.AllowUserToResizeRows       = false;
     this.dgvBookmarks.AutoSizeColumnsMode         = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dgvBookmarks.BackgroundColor             = System.Drawing.SystemColors.Control;
     this.dgvBookmarks.BorderStyle                 = System.Windows.Forms.BorderStyle.Fixed3D;
     this.dgvBookmarks.CellBorderStyle             = System.Windows.Forms.DataGridViewCellBorderStyle.None;
     this.dgvBookmarks.ColumnHeadersBorderStyle    = System.Windows.Forms.DataGridViewHeaderBorderStyle.None;
     this.dgvBookmarks.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
     this.dgvBookmarks.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
         this.clmName,
         this.clmTarget
     });
     this.dgvBookmarks.ContextMenuStrip        = conBookmark;
     this.dgvBookmarks.EditMode                = System.Windows.Forms.DataGridViewEditMode.EditOnF2;
     this.dgvBookmarks.GridColor               = System.Drawing.SystemColors.Control;
     this.dgvBookmarks.Name                    = "dgvBookmarks";
     this.dgvBookmarks.RowHeadersVisible       = false;
     this.dgvBookmarks.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
     this.dgvBookmarks.RowTemplate.Height      = 21;
     this.dgvBookmarks.SelectionMode           = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dgvBookmarks.ShowCellToolTips        = false;
     this.dgvBookmarks.VirtualMode             = true;
     this.dgvBookmarks.RowMoving              += new System.EventHandler <Comical.Controls.RowMovingEventArgs>(this.dgvBookmarks_RowMoving);
     this.dgvBookmarks.QueryActualDestination += new System.EventHandler <Comical.Controls.QueryActualDestinationEventArgs>(this.dgvBookmarks_QueryActualDestination);
     this.dgvBookmarks.CellDoubleClick        += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvBookmarks_CellDoubleClick);
     this.dgvBookmarks.CellErrorTextNeeded    += new System.Windows.Forms.DataGridViewCellErrorTextNeededEventHandler(this.dgvBookmarks_CellErrorTextNeeded);
     this.dgvBookmarks.CellValueNeeded        += new System.Windows.Forms.DataGridViewCellValueEventHandler(this.dgvBookmarks_CellValueNeeded);
     this.dgvBookmarks.CellValuePushed        += new System.Windows.Forms.DataGridViewCellValueEventHandler(this.dgvBookmarks_CellValuePushed);
     this.dgvBookmarks.SelectionChanged       += new System.EventHandler(this.dgvBookmarks_SelectionChanged);
     this.dgvBookmarks.UserDeletedRow         += new System.Windows.Forms.DataGridViewRowEventHandler(this.dgvBookmarks_UserDeletedRow);
     this.dgvBookmarks.UserDeletingRow        += new System.Windows.Forms.DataGridViewRowCancelEventHandler(this.dgvBookmarks_UserDeletingRow);
     //
     // clmName
     //
     this.clmName.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.clmName.DataPropertyName = "Name";
     resources.ApplyResources(this.clmName, "clmName");
     this.clmName.Name      = "clmName";
     this.clmName.Resizable = System.Windows.Forms.DataGridViewTriState.False;
     this.clmName.SortMode  = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // clmTarget
     //
     this.clmTarget.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
     this.clmTarget.DataPropertyName = "Target";
     resources.ApplyResources(this.clmTarget, "clmTarget");
     this.clmTarget.Name      = "clmTarget";
     this.clmTarget.Resizable = System.Windows.Forms.DataGridViewTriState.False;
     this.clmTarget.SortMode  = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // BookmarksView
     //
     resources.ApplyResources(this, "$this");
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.Controls.Add(this.dgvBookmarks);
     this.HideOnClose = true;
     this.Name        = "BookmarksView";
     conBookmark.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dgvBookmarks)).EndInit();
     this.ResumeLayout(false);
 }
Esempio n. 27
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RoomFrm));
     listViewMessage   = new System.Windows.Forms.ListView();
     msg               = new System.Windows.Forms.ColumnHeader();
     likes             = new System.Windows.Forms.ColumnHeader();
     txtNewMessage     = new Proshot.UtilityLib.TextBox();
     lblNewMessage     = new Proshot.UtilityLib.Label();
     splitContainer    = new System.Windows.Forms.SplitContainer();
     listViewRoomUsers = new Proshot.UtilityLib.ListView();
     colUserIcon       = new System.Windows.Forms.ColumnHeader();
     colUserName       = new System.Windows.Forms.ColumnHeader();
     imgList           = new System.Windows.Forms.ImageList(components);
     btnSend           = new Proshot.UtilityLib.Button();
     mnuMain           = new Proshot.UtilityLib.MenuStrip();
     mniChat           = new System.Windows.Forms.ToolStripMenuItem();
     mniSave           = new System.Windows.Forms.ToolStripMenuItem();
     mniExit           = new System.Windows.Forms.ToolStripMenuItem();
     contextMenuStripListViewMessage = new System.Windows.Forms.ContextMenuStrip(components);
     deleteToolStripMenuItem         = new System.Windows.Forms.ToolStripMenuItem();
     likeToolStripMenuItem           = new System.Windows.Forms.ToolStripMenuItem();
     ((System.ComponentModel.ISupportInitialize)(splitContainer)).BeginInit();
     splitContainer.Panel1.SuspendLayout();
     splitContainer.Panel2.SuspendLayout();
     splitContainer.SuspendLayout();
     mnuMain.SuspendLayout();
     contextMenuStripListViewMessage.SuspendLayout();
     SuspendLayout();
     //
     // listViewMessage
     //
     listViewMessage.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         msg,
         likes
     });
     listViewMessage.Dock     = System.Windows.Forms.DockStyle.Fill;
     listViewMessage.Location = new System.Drawing.Point(0, 0);
     listViewMessage.Name     = "listViewMessage";
     listViewMessage.Size     = new System.Drawing.Size(331, 195);
     listViewMessage.TabIndex = 10;
     listViewMessage.UseCompatibleStateImageBehavior = false;
     listViewMessage.View = System.Windows.Forms.View.Details;
     listViewMessage.SelectedIndexChanged += new System.EventHandler(listViewMessage_SelectedIndexChanged);
     listViewMessage.MouseClick           += new System.Windows.Forms.MouseEventHandler(listViewMessage_MouseClick);
     //
     // msg
     //
     msg.Text  = "Message";
     msg.Width = 290;
     //
     // likes
     //
     likes.Text  = "Likes";
     likes.Width = 38;
     //
     // txtNewMessage
     //
     txtNewMessage.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     txtNewMessage.BorderWidth = 1F;
     txtNewMessage.FloatValue  = 0D;
     txtNewMessage.Location    = new System.Drawing.Point(145, 223);
     txtNewMessage.Name        = "txtNewMessage";
     txtNewMessage.Size        = new System.Drawing.Size(267, 21);
     txtNewMessage.TabIndex    = 1;
     //
     // lblNewMessage
     //
     lblNewMessage.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     lblNewMessage.AutoSize    = true;
     lblNewMessage.BorderWidth = 1F;
     lblNewMessage.Location    = new System.Drawing.Point(85, 226);
     lblNewMessage.Name        = "lblNewMessage";
     lblNewMessage.Size        = new System.Drawing.Size(56, 13);
     lblNewMessage.TabIndex    = 2;
     lblNewMessage.Text        = "Message :";
     //
     // splitContainer
     //
     splitContainer.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)));
     splitContainer.Location = new System.Drawing.Point(3, 24);
     splitContainer.Name     = "splitContainer";
     //
     // splitContainer.Panel1
     //
     splitContainer.Panel1.Controls.Add(listViewRoomUsers);
     splitContainer.Panel1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     splitContainer.Panel1.Paint      += new System.Windows.Forms.PaintEventHandler(splitContainer_Panel1_Paint);
     splitContainer.Panel1MinSize      = 130;
     //
     // splitContainer.Panel2
     //
     splitContainer.Panel2.Controls.Add(listViewMessage);
     splitContainer.Panel2.RightToLeft = System.Windows.Forms.RightToLeft.No;
     splitContainer.Size             = new System.Drawing.Size(477, 195);
     splitContainer.SplitterDistance = 137;
     splitContainer.TabIndex         = 8;
     //
     // listViewRoomUsers
     //
     listViewRoomUsers.Alignment = System.Windows.Forms.ListViewAlignment.Default;
     listViewRoomUsers.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         colUserIcon,
         colUserName
     });
     listViewRoomUsers.Dock              = System.Windows.Forms.DockStyle.Fill;
     listViewRoomUsers.FullRowSelect     = true;
     listViewRoomUsers.HeaderStyle       = System.Windows.Forms.ColumnHeaderStyle.None;
     listViewRoomUsers.HideSelection     = false;
     listViewRoomUsers.LabelWrap         = false;
     listViewRoomUsers.Location          = new System.Drawing.Point(0, 0);
     listViewRoomUsers.MultiSelect       = false;
     listViewRoomUsers.Name              = "listViewRoomUsers";
     listViewRoomUsers.RightToLeftLayout = true;
     listViewRoomUsers.Size              = new System.Drawing.Size(137, 195);
     listViewRoomUsers.SmallImageList    = imgList;
     listViewRoomUsers.TabIndex          = 8;
     listViewRoomUsers.UseCompatibleStateImageBehavior = false;
     listViewRoomUsers.View = System.Windows.Forms.View.Details;
     listViewRoomUsers.SelectedIndexChanged += new System.EventHandler(listViewRoomUsers_SelectedIndexChanged);
     //
     // colUserIcon
     //
     colUserIcon.Text  = "";
     colUserIcon.Width = 23;
     //
     // colUserName
     //
     colUserName.Text  = "";
     colUserName.Width = 85;
     //
     // imgList
     //
     imgList.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imgList.ImageStream")));
     imgList.TransparentColor = System.Drawing.Color.Transparent;
     imgList.Images.Add((Image)resources.GetObject("InLine.Image"));
     imgList.Images.SetKeyName(0, "Smiely.ico");
     imgList.Images.SetKeyName(1, "Private.ico");
     imgList.Images.SetKeyName(2, "SendMessage.ico");
     imgList.Images.SetKeyName(3, "Enter.ico");
     imgList.Images.SetKeyName(4, "Exit.ico");
     imgList.Images.SetKeyName(5, "InLine.png");
     //
     // btnSend
     //
     btnSend.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     btnSend.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     btnSend.ImageKey   = "SendMessage.ico";
     btnSend.ImageList  = imgList;
     btnSend.Location   = new System.Drawing.Point(417, 222);
     btnSend.Name       = "btnSend";
     btnSend.Size       = new System.Drawing.Size(67, 23);
     btnSend.TabIndex   = 3;
     btnSend.Text       = "Send";
     btnSend.TextAlign  = System.Drawing.ContentAlignment.MiddleLeft;
     btnSend.UseVisualStyleBackColor = true;
     btnSend.Click += new System.EventHandler(btnSend_Click);
     //
     // mnuMain
     //
     mnuMain.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("mnuMain.BackgroundImage")));
     mnuMain.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         mniChat
     });
     mnuMain.Location = new System.Drawing.Point(0, 0);
     mnuMain.Name     = "mnuMain";
     mnuMain.Size     = new System.Drawing.Size(487, 24);
     mnuMain.TabIndex = 7;
     //
     // mniChat
     //
     mniChat.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         mniSave,
         mniExit
     });
     mniChat.Name = "mniChat";
     mniChat.Size = new System.Drawing.Size(44, 20);
     mniChat.Text = "Chat";
     //
     // mniSave
     //
     mniSave.Image  = ((System.Drawing.Image)(resources.GetObject("mniSave.Image")));
     mniSave.Name   = "mniSave";
     mniSave.Size   = new System.Drawing.Size(98, 22);
     mniSave.Text   = "Save";
     mniSave.Click += new System.EventHandler(mniSave_Click);
     //
     // mniExit
     //
     mniExit.Image  = ((System.Drawing.Image)(resources.GetObject("mniExit.Image")));
     mniExit.Name   = "mniExit";
     mniExit.Size   = new System.Drawing.Size(98, 22);
     mniExit.Text   = "Exit";
     mniExit.Click += new System.EventHandler(mniExit_Click);
     //
     // contextMenuStripListViewMessage
     //
     contextMenuStripListViewMessage.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         deleteToolStripMenuItem,
         likeToolStripMenuItem
     });
     contextMenuStripListViewMessage.Name = "contextMenuStripListViewMessage";
     contextMenuStripListViewMessage.Size = new System.Drawing.Size(108, 48);
     //
     // deleteToolStripMenuItem
     //
     deleteToolStripMenuItem.Name   = "deleteToolStripMenuItem";
     deleteToolStripMenuItem.Size   = new System.Drawing.Size(50, 22);
     deleteToolStripMenuItem.Text   = "Delete";
     deleteToolStripMenuItem.Image  = ((System.Drawing.Image)(resources.GetObject("Garbage.Image")));
     deleteToolStripMenuItem.Click += new System.EventHandler(deleteToolStripMenuItem_Click);
     //
     // likeToolStripMenuItem
     //
     likeToolStripMenuItem.Name   = "likeToolStripMenuItem";
     likeToolStripMenuItem.Size   = new System.Drawing.Size(50, 22);
     likeToolStripMenuItem.Text   = "Like";
     likeToolStripMenuItem.Image  = ((System.Drawing.Image)(resources.GetObject("Like.Image")));
     likeToolStripMenuItem.Click += new System.EventHandler(likeToolStripMenuItem_Click);
     //
     // RoomFrm
     //
     AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     ClientSize          = new System.Drawing.Size(487, 258);
     Controls.Add(btnSend);
     Controls.Add(lblNewMessage);
     Controls.Add(txtNewMessage);
     Controls.Add(mnuMain);
     Controls.Add(splitContainer);
     Font          = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(177)));
     MinimumSize   = new System.Drawing.Size(354, 292);
     Name          = "RoomFrm";
     ShowIcon      = false;
     StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     Activated    += new System.EventHandler(RoomFrm_Activated);
     Deactivate   += new System.EventHandler(RoomFrm_Deactivate);
     FormClosing  += new System.Windows.Forms.FormClosingEventHandler(RoomFrm_FormClosing);
     Load         += new System.EventHandler(RoomFrm_Load);
     splitContainer.Panel1.ResumeLayout(false);
     splitContainer.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(splitContainer)).EndInit();
     splitContainer.ResumeLayout(false);
     mnuMain.ResumeLayout(false);
     mnuMain.PerformLayout();
     contextMenuStripListViewMessage.ResumeLayout(false);
     ResumeLayout(false);
     PerformLayout();
 }
 /// <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.Windows.Forms.TableLayoutPanel          tableLayoutPanel4;
     System.Windows.Forms.ContextMenuStrip          SaveMenuStrip;
     System.Windows.Forms.ToolStripMenuItem         SplitCmdSave;
     System.Windows.Forms.ToolStripMenuItem         SplitCmdSaveAs;
     System.Windows.Forms.TableLayoutPanel          tableLayoutPanel3;
     System.Windows.Forms.TableLayoutPanel          tableLayoutPanel2;
     System.Windows.Forms.TableLayoutPanel          tableLayoutPanel1;
     System.Windows.Forms.ToolTip                   EditorTips;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Editor));
     this.mStepsContainer = new System.Windows.Forms.SplitContainer();
     this.mSteps          = new EllieWare.Support.RefreshingListBox();
     this.CmdSave         = new wyDay.Controls.SplitButton();
     this.CmdParameters   = new System.Windows.Forms.Button();
     this.CmdRun          = new System.Windows.Forms.Button();
     this.CmdStep         = new System.Windows.Forms.Button();
     this.CmdLog          = new System.Windows.Forms.Button();
     this.CmdStop         = new System.Windows.Forms.Button();
     this.CmdAdd          = new System.Windows.Forms.Button();
     this.CmdDelete       = new System.Windows.Forms.Button();
     this.CmdUp           = new System.Windows.Forms.Button();
     this.CmdDown         = new System.Windows.Forms.Button();
     this.CmdClose        = new System.Windows.Forms.Button();
     this.mMainContainer  = new System.Windows.Forms.SplitContainer();
     this.mCallback       = new EllieWare.Common.LogWindow();
     tableLayoutPanel4    = new System.Windows.Forms.TableLayoutPanel();
     SaveMenuStrip        = new System.Windows.Forms.ContextMenuStrip(this.components);
     SplitCmdSave         = new System.Windows.Forms.ToolStripMenuItem();
     SplitCmdSaveAs       = new System.Windows.Forms.ToolStripMenuItem();
     tableLayoutPanel3    = new System.Windows.Forms.TableLayoutPanel();
     tableLayoutPanel2    = new System.Windows.Forms.TableLayoutPanel();
     tableLayoutPanel1    = new System.Windows.Forms.TableLayoutPanel();
     EditorTips           = new System.Windows.Forms.ToolTip(this.components);
     tableLayoutPanel4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.mStepsContainer)).BeginInit();
     this.mStepsContainer.Panel1.SuspendLayout();
     this.mStepsContainer.SuspendLayout();
     SaveMenuStrip.SuspendLayout();
     tableLayoutPanel3.SuspendLayout();
     tableLayoutPanel2.SuspendLayout();
     tableLayoutPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.mMainContainer)).BeginInit();
     this.mMainContainer.Panel1.SuspendLayout();
     this.mMainContainer.Panel2.SuspendLayout();
     this.mMainContainer.SuspendLayout();
     this.SuspendLayout();
     //
     // tableLayoutPanel4
     //
     tableLayoutPanel4.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     tableLayoutPanel4.ColumnCount  = 5;
     tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     tableLayoutPanel4.Controls.Add(this.mStepsContainer, 0, 0);
     tableLayoutPanel4.Controls.Add(this.CmdSave, 1, 5);
     tableLayoutPanel4.Controls.Add(tableLayoutPanel3, 3, 4);
     tableLayoutPanel4.Controls.Add(tableLayoutPanel2, 3, 2);
     tableLayoutPanel4.Controls.Add(tableLayoutPanel1, 3, 0);
     tableLayoutPanel4.Controls.Add(this.CmdClose, 2, 5);
     tableLayoutPanel4.Dock     = System.Windows.Forms.DockStyle.Fill;
     tableLayoutPanel4.Location = new System.Drawing.Point(0, 0);
     tableLayoutPanel4.Name     = "tableLayoutPanel4";
     tableLayoutPanel4.RowCount = 6;
     tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     tableLayoutPanel4.Size     = new System.Drawing.Size(597, 513);
     tableLayoutPanel4.TabIndex = 13;
     //
     // mStepsContainer
     //
     this.mStepsContainer.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     tableLayoutPanel4.SetColumnSpan(this.mStepsContainer, 3);
     this.mStepsContainer.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.mStepsContainer.Location    = new System.Drawing.Point(3, 3);
     this.mStepsContainer.Name        = "mStepsContainer";
     this.mStepsContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // mStepsContainer.Panel1
     //
     this.mStepsContainer.Panel1.Controls.Add(this.mSteps);
     tableLayoutPanel4.SetRowSpan(this.mStepsContainer, 5);
     this.mStepsContainer.Size             = new System.Drawing.Size(539, 478);
     this.mStepsContainer.SplitterDistance = 185;
     this.mStepsContainer.TabIndex         = 0;
     //
     // mSteps
     //
     this.mSteps.DisplayMember         = "Summary";
     this.mSteps.Dock                  = System.Windows.Forms.DockStyle.Fill;
     this.mSteps.FormattingEnabled     = true;
     this.mSteps.Location              = new System.Drawing.Point(0, 0);
     this.mSteps.Name                  = "mSteps";
     this.mSteps.Size                  = new System.Drawing.Size(537, 183);
     this.mSteps.TabIndex              = 0;
     this.mSteps.SelectedIndexChanged += new System.EventHandler(this.Steps_SelectedIndexChanged);
     //
     // CmdSave
     //
     this.CmdSave.ContextMenuStrip        = SaveMenuStrip;
     this.CmdSave.Enabled                 = false;
     this.CmdSave.Location                = new System.Drawing.Point(386, 487);
     this.CmdSave.Name                    = "CmdSave";
     this.CmdSave.Size                    = new System.Drawing.Size(75, 23);
     this.CmdSave.SplitMenuStrip          = SaveMenuStrip;
     this.CmdSave.TabIndex                = 1;
     this.CmdSave.Text                    = "Save";
     this.CmdSave.UseVisualStyleBackColor = true;
     this.CmdSave.Click                  += new System.EventHandler(this.CmdSave_Click);
     //
     // SaveMenuStrip
     //
     SaveMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         SplitCmdSave,
         SplitCmdSaveAs
     });
     SaveMenuStrip.Name = "SaveMenuStrip";
     SaveMenuStrip.Size = new System.Drawing.Size(124, 48);
     //
     // SplitCmdSave
     //
     SplitCmdSave.Name   = "SplitCmdSave";
     SplitCmdSave.Size   = new System.Drawing.Size(123, 22);
     SplitCmdSave.Text   = "Save";
     SplitCmdSave.Click += new System.EventHandler(this.CmdSave_Click);
     //
     // SplitCmdSaveAs
     //
     SplitCmdSaveAs.Name   = "SplitCmdSaveAs";
     SplitCmdSaveAs.Size   = new System.Drawing.Size(123, 22);
     SplitCmdSaveAs.Text   = "Save As...";
     SplitCmdSaveAs.Click += new System.EventHandler(this.CmdSaveAs_Click);
     //
     // tableLayoutPanel3
     //
     tableLayoutPanel3.AutoSize     = true;
     tableLayoutPanel3.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     tableLayoutPanel3.ColumnCount  = 1;
     tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     tableLayoutPanel3.Controls.Add(this.CmdParameters, 0, 0);
     tableLayoutPanel3.Location = new System.Drawing.Point(548, 423);
     tableLayoutPanel3.Name     = "tableLayoutPanel3";
     tableLayoutPanel3.RowCount = 1;
     tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));
     tableLayoutPanel3.Size     = new System.Drawing.Size(46, 46);
     tableLayoutPanel3.TabIndex = 13;
     //
     // CmdParameters
     //
     this.CmdParameters.Image    = global::EllieWare.Common.Properties.Resources.gears_32x32;
     this.CmdParameters.Location = new System.Drawing.Point(3, 3);
     this.CmdParameters.Name     = "CmdParameters";
     this.CmdParameters.Size     = new System.Drawing.Size(40, 40);
     this.CmdParameters.TabIndex = 0;
     EditorTips.SetToolTip(this.CmdParameters, "Parameters...");
     this.CmdParameters.UseVisualStyleBackColor = true;
     this.CmdParameters.Click += new System.EventHandler(this.CmdParameters_Click);
     //
     // tableLayoutPanel2
     //
     tableLayoutPanel2.AutoSize     = true;
     tableLayoutPanel2.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     tableLayoutPanel2.ColumnCount  = 1;
     tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     tableLayoutPanel2.Controls.Add(this.CmdRun, 0, 0);
     tableLayoutPanel2.Controls.Add(this.CmdStep, 0, 1);
     tableLayoutPanel2.Controls.Add(this.CmdLog, 0, 3);
     tableLayoutPanel2.Controls.Add(this.CmdStop, 0, 2);
     tableLayoutPanel2.Location = new System.Drawing.Point(548, 213);
     tableLayoutPanel2.Name     = "tableLayoutPanel2";
     tableLayoutPanel2.RowCount = 4;
     tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel2.Size     = new System.Drawing.Size(46, 184);
     tableLayoutPanel2.TabIndex = 11;
     //
     // CmdRun
     //
     this.CmdRun.Image    = global::EllieWare.Common.Properties.Resources.step_run_32x32;
     this.CmdRun.Location = new System.Drawing.Point(3, 3);
     this.CmdRun.Name     = "CmdRun";
     this.CmdRun.Size     = new System.Drawing.Size(40, 40);
     this.CmdRun.TabIndex = 0;
     EditorTips.SetToolTip(this.CmdRun, "Run");
     this.CmdRun.UseVisualStyleBackColor = true;
     this.CmdRun.Click += new System.EventHandler(this.CmdRun_Click);
     //
     // CmdStep
     //
     this.CmdStep.Image    = global::EllieWare.Common.Properties.Resources.step_32x32;
     this.CmdStep.Location = new System.Drawing.Point(3, 49);
     this.CmdStep.Name     = "CmdStep";
     this.CmdStep.Size     = new System.Drawing.Size(40, 40);
     this.CmdStep.TabIndex = 1;
     EditorTips.SetToolTip(this.CmdStep, "Step");
     this.CmdStep.UseVisualStyleBackColor = true;
     this.CmdStep.Click += new System.EventHandler(this.CmdStep_Click);
     //
     // CmdLog
     //
     this.CmdLog.Image    = global::EllieWare.Common.Properties.Resources.scroll2_32x32;
     this.CmdLog.Location = new System.Drawing.Point(3, 141);
     this.CmdLog.Name     = "CmdLog";
     this.CmdLog.Size     = new System.Drawing.Size(40, 40);
     this.CmdLog.TabIndex = 3;
     EditorTips.SetToolTip(this.CmdLog, "Toggle log window");
     this.CmdLog.UseVisualStyleBackColor = true;
     this.CmdLog.Click += new System.EventHandler(this.CmdLog_Click);
     //
     // CmdStop
     //
     this.CmdStop.Image    = global::EllieWare.Common.Properties.Resources.step_stop_32x32;
     this.CmdStop.Location = new System.Drawing.Point(3, 95);
     this.CmdStop.Name     = "CmdStop";
     this.CmdStop.Size     = new System.Drawing.Size(40, 40);
     this.CmdStop.TabIndex = 2;
     this.CmdStop.UseVisualStyleBackColor = true;
     this.CmdStop.Click += new System.EventHandler(this.CmdStop_Click);
     //
     // tableLayoutPanel1
     //
     tableLayoutPanel1.AutoSize     = true;
     tableLayoutPanel1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     tableLayoutPanel1.ColumnCount  = 1;
     tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     tableLayoutPanel1.Controls.Add(this.CmdAdd, 0, 0);
     tableLayoutPanel1.Controls.Add(this.CmdDelete, 0, 1);
     tableLayoutPanel1.Controls.Add(this.CmdUp, 0, 2);
     tableLayoutPanel1.Controls.Add(this.CmdDown, 0, 3);
     tableLayoutPanel1.Location = new System.Drawing.Point(548, 3);
     tableLayoutPanel1.Name     = "tableLayoutPanel1";
     tableLayoutPanel1.RowCount = 4;
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
     tableLayoutPanel1.Size     = new System.Drawing.Size(46, 184);
     tableLayoutPanel1.TabIndex = 10;
     //
     // CmdAdd
     //
     this.CmdAdd.Image    = global::EllieWare.Common.Properties.Resources.step_add_32x32;
     this.CmdAdd.Location = new System.Drawing.Point(3, 3);
     this.CmdAdd.Name     = "CmdAdd";
     this.CmdAdd.Size     = new System.Drawing.Size(40, 40);
     this.CmdAdd.TabIndex = 0;
     EditorTips.SetToolTip(this.CmdAdd, "Add...");
     this.CmdAdd.UseVisualStyleBackColor = true;
     this.CmdAdd.Click += new System.EventHandler(this.CmdAdd_Click);
     //
     // CmdDelete
     //
     this.CmdDelete.Image    = global::EllieWare.Common.Properties.Resources.step_delete_32x32;
     this.CmdDelete.Location = new System.Drawing.Point(3, 49);
     this.CmdDelete.Name     = "CmdDelete";
     this.CmdDelete.Size     = new System.Drawing.Size(40, 40);
     this.CmdDelete.TabIndex = 1;
     EditorTips.SetToolTip(this.CmdDelete, "Delete");
     this.CmdDelete.UseVisualStyleBackColor = true;
     this.CmdDelete.Click += new System.EventHandler(this.CmdDelete_Click);
     //
     // CmdUp
     //
     this.CmdUp.Image    = global::EllieWare.Common.Properties.Resources.arrow_up_green_32x32;
     this.CmdUp.Location = new System.Drawing.Point(3, 95);
     this.CmdUp.Name     = "CmdUp";
     this.CmdUp.Size     = new System.Drawing.Size(40, 40);
     this.CmdUp.TabIndex = 2;
     EditorTips.SetToolTip(this.CmdUp, "Up");
     this.CmdUp.UseVisualStyleBackColor = true;
     this.CmdUp.Click += new System.EventHandler(this.CmdUp_Click);
     //
     // CmdDown
     //
     this.CmdDown.Image    = global::EllieWare.Common.Properties.Resources.arrow_down_green_32x32;
     this.CmdDown.Location = new System.Drawing.Point(3, 141);
     this.CmdDown.Name     = "CmdDown";
     this.CmdDown.Size     = new System.Drawing.Size(40, 40);
     this.CmdDown.TabIndex = 3;
     EditorTips.SetToolTip(this.CmdDown, "Down");
     this.CmdDown.UseVisualStyleBackColor = true;
     this.CmdDown.Click += new System.EventHandler(this.CmdDown_Click);
     //
     // CmdClose
     //
     this.CmdClose.DialogResult            = System.Windows.Forms.DialogResult.Cancel;
     this.CmdClose.Location                = new System.Drawing.Point(467, 487);
     this.CmdClose.Name                    = "CmdClose";
     this.CmdClose.Size                    = new System.Drawing.Size(75, 23);
     this.CmdClose.TabIndex                = 2;
     this.CmdClose.Text                    = "Close";
     this.CmdClose.UseVisualStyleBackColor = true;
     this.CmdClose.Click                  += new System.EventHandler(this.CmdClose_Click);
     //
     // mMainContainer
     //
     this.mMainContainer.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.mMainContainer.BackColor = System.Drawing.SystemColors.HotTrack;
     this.mMainContainer.Location  = new System.Drawing.Point(12, 12);
     this.mMainContainer.Margin    = new System.Windows.Forms.Padding(0);
     this.mMainContainer.Name      = "mMainContainer";
     //
     // mMainContainer.Panel1
     //
     this.mMainContainer.Panel1.BackColor = System.Drawing.SystemColors.Control;
     this.mMainContainer.Panel1.Controls.Add(tableLayoutPanel4);
     //
     // mMainContainer.Panel2
     //
     this.mMainContainer.Panel2.BackColor = System.Drawing.SystemColors.Control;
     this.mMainContainer.Panel2.Controls.Add(this.mCallback);
     this.mMainContainer.Size             = new System.Drawing.Size(841, 513);
     this.mMainContainer.SplitterDistance = 597;
     this.mMainContainer.TabIndex         = 15;
     this.mMainContainer.SplitterMoved   += new System.Windows.Forms.SplitterEventHandler(this.MainContainer_SplitterMoved);
     //
     // mCallback
     //
     this.mCallback.AutoSize     = true;
     this.mCallback.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.mCallback.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.mCallback.Location     = new System.Drawing.Point(0, 0);
     this.mCallback.Margin       = new System.Windows.Forms.Padding(0);
     this.mCallback.Name         = "mCallback";
     this.mCallback.Size         = new System.Drawing.Size(240, 513);
     this.mCallback.TabIndex     = 14;
     //
     // Editor
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton        = this.CmdClose;
     this.ClientSize          = new System.Drawing.Size(865, 537);
     this.Controls.Add(this.mMainContainer);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MinimumSize   = new System.Drawing.Size(0, 575);
     this.Name          = "Editor";
     this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Show;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text          = "Editor";
     this.FormClosing  += new System.Windows.Forms.FormClosingEventHandler(this.Editor_FormClosing);
     this.FormClosed   += new System.Windows.Forms.FormClosedEventHandler(this.Editor_FormClosed);
     this.Load         += new System.EventHandler(this.Editor_Load);
     this.Shown        += new System.EventHandler(this.Editor_Shown);
     this.SizeChanged  += new System.EventHandler(this.Editor_SizeChanged);
     tableLayoutPanel4.ResumeLayout(false);
     tableLayoutPanel4.PerformLayout();
     this.mStepsContainer.Panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.mStepsContainer)).EndInit();
     this.mStepsContainer.ResumeLayout(false);
     SaveMenuStrip.ResumeLayout(false);
     tableLayoutPanel3.ResumeLayout(false);
     tableLayoutPanel2.ResumeLayout(false);
     tableLayoutPanel1.ResumeLayout(false);
     this.mMainContainer.Panel1.ResumeLayout(false);
     this.mMainContainer.Panel2.ResumeLayout(false);
     this.mMainContainer.Panel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.mMainContainer)).EndInit();
     this.mMainContainer.ResumeLayout(false);
     this.ResumeLayout(false);
 }
        /// <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.Windows.Forms.ContextMenuStrip trayMenu;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainFormPaintDotNet));
            this.configureToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.quitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.trayIcon = new System.Windows.Forms.NotifyIcon(this.components);
            this.hideButton = new System.Windows.Forms.Button();
            this.settings = new ScreenShooter.ScreenshotSettings();
            trayMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
            trayMenu.SuspendLayout();
            this.SuspendLayout();
            // 
            // trayMenu
            // 
            trayMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.configureToolStripMenuItem,
            this.toolStripSeparator1,
            this.quitToolStripMenuItem});
            trayMenu.Name = "trayMenu";
            trayMenu.Size = new System.Drawing.Size(140, 54);
            // 
            // configureToolStripMenuItem
            // 
            this.configureToolStripMenuItem.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.configureToolStripMenuItem.Name = "configureToolStripMenuItem";
            this.configureToolStripMenuItem.Size = new System.Drawing.Size(139, 22);
            this.configureToolStripMenuItem.Text = "&Configure";
            this.configureToolStripMenuItem.Click += new System.EventHandler(this.configureToolStripMenuItem_Click);
            // 
            // toolStripSeparator1
            // 
            this.toolStripSeparator1.Name = "toolStripSeparator1";
            this.toolStripSeparator1.Size = new System.Drawing.Size(136, 6);
            // 
            // quitToolStripMenuItem
            // 
            this.quitToolStripMenuItem.Name = "quitToolStripMenuItem";
            this.quitToolStripMenuItem.Size = new System.Drawing.Size(139, 22);
            this.quitToolStripMenuItem.Text = "&Quit";
            this.quitToolStripMenuItem.Click += new System.EventHandler(this.quitToolStripMenuItem_Click);
            // 
            // trayIcon
            // 
            this.trayIcon.ContextMenuStrip = trayMenu;
            this.trayIcon.Text = "ScreenShooter Paint.NET Edition";
            this.trayIcon.Visible = true;
            this.trayIcon.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.trayIcon_MouseDoubleClick);
            // 
            // hideButton
            // 
            this.hideButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.hideButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            this.hideButton.Location = new System.Drawing.Point(301, 34);
            this.hideButton.Name = "hideButton";
            this.hideButton.Size = new System.Drawing.Size(75, 23);
            this.hideButton.TabIndex = 0;
            this.hideButton.Text = "Hide";
            this.hideButton.UseVisualStyleBackColor = true;
            this.hideButton.Click += new System.EventHandler(this.hideButton_Click);
            // 
            // settings
            // 
            this.settings.Location = new System.Drawing.Point(12, 12);
            this.settings.Name = "settings";
            this.settings.Size = new System.Drawing.Size(376, 304);
            this.settings.TabIndex = 1;
            this.settings.ScreenshotTaken += new ScreenShooter.ScreenshotSettings.ScreenshotHandler(this.settings_ScreenshotTaken);
            // 
            // MainFormPaintDotNet
            // 
            this.AcceptButton = this.hideButton;
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.CancelButton = this.hideButton;
            this.ClientSize = new System.Drawing.Size(400, 328);
            this.Controls.Add(this.hideButton);
            this.Controls.Add(this.settings);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MaximizeBox = false;
            this.Name = "MainFormPaintDotNet";
            this.Text = "ScreenShooter Paint.NET Edition";
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainFormPaintDotNet_FormClosing);
            trayMenu.ResumeLayout(false);
            this.ResumeLayout(false);

        }
Esempio n. 30
0
 /// <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.Windows.Forms.GroupBox                  groupBoxServerConnection;
     System.Windows.Forms.Label                     labelServerStatus;
     System.Windows.Forms.Label                     labelApiAccessToken;
     System.Windows.Forms.Label                     labelApiBaseUrl;
     System.Windows.Forms.ColumnHeader              columnKeyLabel;
     System.Windows.Forms.ColumnHeader              columnPath;
     System.Windows.Forms.ColumnHeader              columnPayload;
     System.Windows.Forms.ContextMenuStrip          contextMenuStripNotifyIcon;
     System.Windows.Forms.ToolStripMenuItem         toolStripMenuItemOpen;
     System.Windows.Forms.ToolStripMenuItem         toolStripMenuItemQuit;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
     this.buttonSaveServerConnection = new System.Windows.Forms.Button();
     this.textBoxServerStatus        = new System.Windows.Forms.TextBox();
     this.textBoxApiAccessToken      = new System.Windows.Forms.TextBox();
     this.textBoxApiBaseUrl          = new System.Windows.Forms.TextBox();
     this.toolStripMenuItemTitle     = new System.Windows.Forms.ToolStripMenuItem();
     this.notifyIcon            = new System.Windows.Forms.NotifyIcon(this.components);
     this.listShortcuts         = new System.Windows.Forms.ListView();
     this.buttonDeleteShortcuts = new System.Windows.Forms.Button();
     this.buttonAddShortcut     = new System.Windows.Forms.Button();
     groupBoxServerConnection   = new System.Windows.Forms.GroupBox();
     labelServerStatus          = new System.Windows.Forms.Label();
     labelApiAccessToken        = new System.Windows.Forms.Label();
     labelApiBaseUrl            = new System.Windows.Forms.Label();
     columnKeyLabel             = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     columnPath    = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     columnPayload = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     contextMenuStripNotifyIcon = new System.Windows.Forms.ContextMenuStrip(this.components);
     toolStripMenuItemOpen      = new System.Windows.Forms.ToolStripMenuItem();
     toolStripMenuItemQuit      = new System.Windows.Forms.ToolStripMenuItem();
     groupBoxServerConnection.SuspendLayout();
     contextMenuStripNotifyIcon.SuspendLayout();
     this.SuspendLayout();
     //
     // groupBoxServerConnection
     //
     groupBoxServerConnection.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                             | System.Windows.Forms.AnchorStyles.Right)));
     groupBoxServerConnection.Controls.Add(labelServerStatus);
     groupBoxServerConnection.Controls.Add(this.buttonSaveServerConnection);
     groupBoxServerConnection.Controls.Add(this.textBoxServerStatus);
     groupBoxServerConnection.Controls.Add(labelApiAccessToken);
     groupBoxServerConnection.Controls.Add(this.textBoxApiAccessToken);
     groupBoxServerConnection.Controls.Add(this.textBoxApiBaseUrl);
     groupBoxServerConnection.Controls.Add(labelApiBaseUrl);
     groupBoxServerConnection.Location = new System.Drawing.Point(13, 13);
     groupBoxServerConnection.Name     = "groupBoxServerConnection";
     groupBoxServerConnection.Size     = new System.Drawing.Size(580, 99);
     groupBoxServerConnection.TabIndex = 0;
     groupBoxServerConnection.TabStop  = false;
     groupBoxServerConnection.Text     = "Server Connection";
     //
     // labelServerStatus
     //
     labelServerStatus.AutoSize = true;
     labelServerStatus.Location = new System.Drawing.Point(6, 75);
     labelServerStatus.Name     = "labelServerStatus";
     labelServerStatus.Size     = new System.Drawing.Size(40, 13);
     labelServerStatus.TabIndex = 6;
     labelServerStatus.Text     = "Status:";
     //
     // buttonSaveServerConnection
     //
     this.buttonSaveServerConnection.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonSaveServerConnection.Location = new System.Drawing.Point(499, 70);
     this.buttonSaveServerConnection.Name     = "buttonSaveServerConnection";
     this.buttonSaveServerConnection.Size     = new System.Drawing.Size(75, 23);
     this.buttonSaveServerConnection.TabIndex = 4;
     this.buttonSaveServerConnection.Text     = "Save";
     this.buttonSaveServerConnection.UseVisualStyleBackColor = true;
     this.buttonSaveServerConnection.Click += new System.EventHandler(this.buttonSaveServerConnection_Click);
     //
     // textBoxServerStatus
     //
     this.textBoxServerStatus.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                             | System.Windows.Forms.AnchorStyles.Right)));
     this.textBoxServerStatus.Enabled  = false;
     this.textBoxServerStatus.Location = new System.Drawing.Point(91, 72);
     this.textBoxServerStatus.Name     = "textBoxServerStatus";
     this.textBoxServerStatus.ReadOnly = true;
     this.textBoxServerStatus.Size     = new System.Drawing.Size(401, 20);
     this.textBoxServerStatus.TabIndex = 5;
     //
     // labelApiAccessToken
     //
     labelApiAccessToken.AutoSize = true;
     labelApiAccessToken.Location = new System.Drawing.Point(6, 49);
     labelApiAccessToken.Name     = "labelApiAccessToken";
     labelApiAccessToken.Size     = new System.Drawing.Size(75, 13);
     labelApiAccessToken.TabIndex = 3;
     labelApiAccessToken.Text     = "Access token:";
     //
     // textBoxApiAccessToken
     //
     this.textBoxApiAccessToken.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                               | System.Windows.Forms.AnchorStyles.Right)));
     this.textBoxApiAccessToken.DataBindings.Add(new System.Windows.Forms.Binding("Text", global::HomeAssistantShortcuts.Properties.Settings.Default, "ApiAccessToken", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.textBoxApiAccessToken.Location = new System.Drawing.Point(91, 46);
     this.textBoxApiAccessToken.Name     = "textBoxApiAccessToken";
     this.textBoxApiAccessToken.Size     = new System.Drawing.Size(483, 20);
     this.textBoxApiAccessToken.TabIndex = 2;
     this.textBoxApiAccessToken.Text     = global::HomeAssistantShortcuts.Properties.Settings.Default.ApiAccessToken;
     this.textBoxApiAccessToken.UseSystemPasswordChar = true;
     //
     // textBoxApiBaseUrl
     //
     this.textBoxApiBaseUrl.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                           | System.Windows.Forms.AnchorStyles.Right)));
     this.textBoxApiBaseUrl.DataBindings.Add(new System.Windows.Forms.Binding("Text", global::HomeAssistantShortcuts.Properties.Settings.Default, "ApiBaseUrl", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.textBoxApiBaseUrl.Location = new System.Drawing.Point(91, 19);
     this.textBoxApiBaseUrl.Name     = "textBoxApiBaseUrl";
     this.textBoxApiBaseUrl.Size     = new System.Drawing.Size(483, 20);
     this.textBoxApiBaseUrl.TabIndex = 1;
     this.textBoxApiBaseUrl.Text     = global::HomeAssistantShortcuts.Properties.Settings.Default.ApiBaseUrl;
     //
     // labelApiBaseUrl
     //
     labelApiBaseUrl.AutoSize = true;
     labelApiBaseUrl.Location = new System.Drawing.Point(6, 22);
     labelApiBaseUrl.Name     = "labelApiBaseUrl";
     labelApiBaseUrl.Size     = new System.Drawing.Size(78, 13);
     labelApiBaseUrl.TabIndex = 0;
     labelApiBaseUrl.Text     = "API base URL:";
     //
     // columnKeyLabel
     //
     columnKeyLabel.Text  = "Shortcut";
     columnKeyLabel.Width = 120;
     //
     // columnPath
     //
     columnPath.Text  = "Service";
     columnPath.Width = 200;
     //
     // columnPayload
     //
     columnPayload.Text  = "Payload";
     columnPayload.Width = 500;
     //
     // contextMenuStripNotifyIcon
     //
     contextMenuStripNotifyIcon.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripMenuItemTitle,
         toolStripMenuItemOpen,
         toolStripMenuItemQuit
     });
     contextMenuStripNotifyIcon.Name            = "contextMenuStripNotifyIcon";
     contextMenuStripNotifyIcon.ShowImageMargin = false;
     contextMenuStripNotifyIcon.Size            = new System.Drawing.Size(186, 70);
     //
     // toolStripMenuItemTitle
     //
     this.toolStripMenuItemTitle.Enabled = false;
     this.toolStripMenuItemTitle.Name    = "toolStripMenuItemTitle";
     this.toolStripMenuItemTitle.Size    = new System.Drawing.Size(185, 22);
     this.toolStripMenuItemTitle.Text    = "Home Assistant Shortcuts";
     //
     // toolStripMenuItemOpen
     //
     toolStripMenuItemOpen.Name   = "toolStripMenuItemOpen";
     toolStripMenuItemOpen.Size   = new System.Drawing.Size(185, 22);
     toolStripMenuItemOpen.Text   = "Settings";
     toolStripMenuItemOpen.Click += new System.EventHandler(this.toolStripMenuItemOpen_Click);
     //
     // toolStripMenuItemQuit
     //
     toolStripMenuItemQuit.Name   = "toolStripMenuItemQuit";
     toolStripMenuItemQuit.Size   = new System.Drawing.Size(185, 22);
     toolStripMenuItemQuit.Text   = "Quit";
     toolStripMenuItemQuit.Click += new System.EventHandler(this.toolStripMenuItemQuit_Click);
     //
     // notifyIcon
     //
     this.notifyIcon.ContextMenuStrip = contextMenuStripNotifyIcon;
     this.notifyIcon.Icon             = ((System.Drawing.Icon)(resources.GetObject("notifyIcon.Icon")));
     this.notifyIcon.Text             = "HomeAssistant Shortcuts";
     this.notifyIcon.Visible          = true;
     this.notifyIcon.DoubleClick     += new System.EventHandler(this.notifyIcon_DoubleClick);
     //
     // listShortcuts
     //
     this.listShortcuts.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.listShortcuts.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         columnKeyLabel,
         columnPath,
         columnPayload
     });
     this.listShortcuts.FullRowSelect = true;
     this.listShortcuts.HideSelection = false;
     this.listShortcuts.Location      = new System.Drawing.Point(13, 118);
     this.listShortcuts.Name          = "listShortcuts";
     this.listShortcuts.ShowGroups    = false;
     this.listShortcuts.Size          = new System.Drawing.Size(580, 309);
     this.listShortcuts.TabIndex      = 1;
     this.listShortcuts.UseCompatibleStateImageBehavior = false;
     this.listShortcuts.View = System.Windows.Forms.View.Details;
     this.listShortcuts.ItemSelectionChanged += new System.Windows.Forms.ListViewItemSelectionChangedEventHandler(this.listShortcuts_ItemSelectionChanged);
     //
     // buttonDeleteShortcuts
     //
     this.buttonDeleteShortcuts.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.buttonDeleteShortcuts.Enabled  = false;
     this.buttonDeleteShortcuts.Location = new System.Drawing.Point(13, 433);
     this.buttonDeleteShortcuts.Name     = "buttonDeleteShortcuts";
     this.buttonDeleteShortcuts.Size     = new System.Drawing.Size(125, 23);
     this.buttonDeleteShortcuts.TabIndex = 2;
     this.buttonDeleteShortcuts.Text     = "Delete selected";
     this.buttonDeleteShortcuts.UseVisualStyleBackColor = true;
     this.buttonDeleteShortcuts.Click += new System.EventHandler(this.buttonDeleteShortcuts_Click);
     //
     // buttonAddShortcut
     //
     this.buttonAddShortcut.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonAddShortcut.Location = new System.Drawing.Point(518, 433);
     this.buttonAddShortcut.Name     = "buttonAddShortcut";
     this.buttonAddShortcut.Size     = new System.Drawing.Size(75, 23);
     this.buttonAddShortcut.TabIndex = 3;
     this.buttonAddShortcut.Text     = "Add";
     this.buttonAddShortcut.UseVisualStyleBackColor = true;
     this.buttonAddShortcut.Click += new System.EventHandler(this.buttonAddShortcut_Click);
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(605, 468);
     this.Controls.Add(this.buttonAddShortcut);
     this.Controls.Add(this.buttonDeleteShortcuts);
     this.Controls.Add(this.listShortcuts);
     this.Controls.Add(groupBoxServerConnection);
     this.Icon         = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name         = "MainForm";
     this.Text         = "Home Assistant Shortcuts";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
     this.Resize      += new System.EventHandler(this.MainForm_Resize);
     groupBoxServerConnection.ResumeLayout(false);
     groupBoxServerConnection.PerformLayout();
     contextMenuStripNotifyIcon.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Esempio n. 31
0
 /// <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(ESPRGB));
     this.Title_text            = new System.Windows.Forms.Label();
     this.notifyTray            = new System.Windows.Forms.NotifyIcon(this.components);
     trayContext                = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.showToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripTurnOffAll   = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripTurnOnAll    = new System.Windows.Forms.ToolStripMenuItem();
     this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.tabPage1              = new System.Windows.Forms.TabPage();
     this.tabPage2              = new System.Windows.Forms.TabPage();
     this.exitButton            = new System.Windows.Forms.Button();
     this.settingsButton        = new System.Windows.Forms.Button();
     this.minimizeButton        = new System.Windows.Forms.Button();
     tabDevices       = new Zeroit.Framework.Metro.ZeroitMetroTabControl();
     this._Add_Device = new System.Windows.Forms.TabPage();
     trayContext.SuspendLayout();
     tabDevices.SuspendLayout();
     this.SuspendLayout();
     //
     // Title_text
     //
     this.Title_text.AutoSize  = true;
     this.Title_text.Font      = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Title_text.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(6)))), ((int)(((byte)(215)))), ((int)(((byte)(156)))));
     this.Title_text.Location  = new System.Drawing.Point(10, 16);
     this.Title_text.Margin    = new System.Windows.Forms.Padding(0);
     this.Title_text.Name      = "Title_text";
     this.Title_text.Size      = new System.Drawing.Size(99, 25);
     this.Title_text.TabIndex  = 0;
     this.Title_text.Text      = "ESPRGB";
     //
     // notifyTray
     //
     this.notifyTray.ContextMenuStrip  = trayContext;
     this.notifyTray.Icon              = ((System.Drawing.Icon)(resources.GetObject("notifyTray.Icon")));
     this.notifyTray.Text              = "ESPRGB";
     this.notifyTray.Visible           = true;
     this.notifyTray.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.notifyTray_MouseDoubleClick);
     //
     // trayContext
     //
     trayContext.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(21)))), ((int)(((byte)(32)))), ((int)(((byte)(54)))));
     trayContext.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.showToolStripMenuItem,
         this.toolStripTurnOffAll,
         this.toolStripTurnOnAll,
         this.exitToolStripMenuItem
     });
     trayContext.LayoutStyle      = System.Windows.Forms.ToolStripLayoutStyle.VerticalStackWithOverflow;
     trayContext.Name             = "trayContext";
     trayContext.ShowImageMargin  = false;
     trayContext.ShowItemToolTips = false;
     trayContext.Size             = new System.Drawing.Size(143, 92);
     //
     // showToolStripMenuItem
     //
     this.showToolStripMenuItem.ForeColor = System.Drawing.Color.White;
     this.showToolStripMenuItem.Name      = "showToolStripMenuItem";
     this.showToolStripMenuItem.Size      = new System.Drawing.Size(142, 22);
     this.showToolStripMenuItem.Text      = "Show";
     this.showToolStripMenuItem.Click    += new System.EventHandler(this.showToolStripMenuItem_Click);
     //
     // toolStripTurnOffAll
     //
     this.toolStripTurnOffAll.ForeColor = System.Drawing.Color.White;
     this.toolStripTurnOffAll.Name      = "toolStripTurnOffAll";
     this.toolStripTurnOffAll.Size      = new System.Drawing.Size(142, 22);
     this.toolStripTurnOffAll.Text      = "TurnOff All Lights";
     this.toolStripTurnOffAll.Click    += new System.EventHandler(this.toolStripTurnOffAll_Click);
     //
     // toolStripTurnOnAll
     //
     this.toolStripTurnOnAll.ForeColor = System.Drawing.Color.White;
     this.toolStripTurnOnAll.Name      = "toolStripTurnOnAll";
     this.toolStripTurnOnAll.Size      = new System.Drawing.Size(142, 22);
     this.toolStripTurnOnAll.Text      = "TurnOn All Lights";
     this.toolStripTurnOnAll.Click    += new System.EventHandler(this.toolStripTurnOnAll_Click);
     //
     // exitToolStripMenuItem
     //
     this.exitToolStripMenuItem.ForeColor = System.Drawing.Color.White;
     this.exitToolStripMenuItem.Name      = "exitToolStripMenuItem";
     this.exitToolStripMenuItem.Size      = new System.Drawing.Size(142, 22);
     this.exitToolStripMenuItem.Text      = "Quit";
     this.exitToolStripMenuItem.Click    += new System.EventHandler(this.exitToolStripMenuItem_Click);
     //
     // tabPage1
     //
     this.tabPage1.Location = new System.Drawing.Point(0, 0);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Size     = new System.Drawing.Size(200, 100);
     this.tabPage1.TabIndex = 0;
     //
     // tabPage2
     //
     this.tabPage2.Location = new System.Drawing.Point(0, 0);
     this.tabPage2.Name     = "tabPage2";
     this.tabPage2.Size     = new System.Drawing.Size(200, 100);
     this.tabPage2.TabIndex = 0;
     //
     // exitButton
     //
     this.exitButton.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.exitButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(21)))), ((int)(((byte)(32)))), ((int)(((byte)(54)))));
     this.exitButton.FlatAppearance.BorderSize = 0;
     this.exitButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.exitButton.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(21)))), ((int)(((byte)(32)))), ((int)(((byte)(54)))));
     this.exitButton.Image     = global::ESPRGB_Client.Properties.Resources.exit;
     this.exitButton.Location  = new System.Drawing.Point(790, 16);
     this.exitButton.Margin    = new System.Windows.Forms.Padding(0);
     this.exitButton.Name      = "exitButton";
     this.exitButton.Size      = new System.Drawing.Size(24, 24);
     this.exitButton.TabIndex  = 1;
     this.exitButton.TabStop   = false;
     this.exitButton.UseVisualStyleBackColor = false;
     this.exitButton.Click += new System.EventHandler(this.exitButton_Click);
     //
     // settingsButton
     //
     this.settingsButton.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.settingsButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(21)))), ((int)(((byte)(32)))), ((int)(((byte)(54)))));
     this.settingsButton.FlatAppearance.BorderSize = 0;
     this.settingsButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.settingsButton.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(21)))), ((int)(((byte)(32)))), ((int)(((byte)(54)))));
     this.settingsButton.Image     = global::ESPRGB_Client.Properties.Resources.settings;
     this.settingsButton.Location  = new System.Drawing.Point(763, 16);
     this.settingsButton.Margin    = new System.Windows.Forms.Padding(0);
     this.settingsButton.Name      = "settingsButton";
     this.settingsButton.Size      = new System.Drawing.Size(24, 24);
     this.settingsButton.TabIndex  = 5;
     this.settingsButton.TabStop   = false;
     this.settingsButton.UseVisualStyleBackColor = false;
     this.settingsButton.Click += new System.EventHandler(this.settingsButton_Click);
     //
     // minimizeButton
     //
     this.minimizeButton.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.minimizeButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(21)))), ((int)(((byte)(32)))), ((int)(((byte)(54)))));
     this.minimizeButton.FlatAppearance.BorderSize = 0;
     this.minimizeButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.minimizeButton.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(21)))), ((int)(((byte)(32)))), ((int)(((byte)(54)))));
     this.minimizeButton.Image     = global::ESPRGB_Client.Properties.Resources.minimize;
     this.minimizeButton.Location  = new System.Drawing.Point(738, 16);
     this.minimizeButton.Margin    = new System.Windows.Forms.Padding(0);
     this.minimizeButton.Name      = "minimizeButton";
     this.minimizeButton.Size      = new System.Drawing.Size(24, 24);
     this.minimizeButton.TabIndex  = 4;
     this.minimizeButton.TabStop   = false;
     this.minimizeButton.UseVisualStyleBackColor = false;
     this.minimizeButton.Click += new System.EventHandler(this.minimizeButton_Click);
     //
     // tabDevices
     //
     tabDevices.Alignment = System.Windows.Forms.TabAlignment.Bottom;
     tabDevices.Anchor    = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     tabDevices.AnimationSpeed        = -1;
     tabDevices.Appearance            = System.Windows.Forms.Appearance.Normal;
     tabDevices.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
     tabDevices.BorderColor           = System.Drawing.Color.FromArgb(((int)(((byte)(21)))), ((int)(((byte)(32)))), ((int)(((byte)(54)))));
     tabDevices.Controls.Add(this._Add_Device);
     tabDevices.Font                  = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     tabDevices.HasAnimation          = false;
     tabDevices.HeaderForeColor       = System.Drawing.Color.White;
     tabDevices.HeaderItemColor       = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(71)))));
     tabDevices.HotTrack              = true;
     tabDevices.HoverBorderColor      = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(71)))));
     tabDevices.HoverColor            = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(71)))));
     tabDevices.ItemColor             = System.Drawing.Color.FromArgb(((int)(((byte)(21)))), ((int)(((byte)(32)))), ((int)(((byte)(54)))));
     tabDevices.ItemForeColor         = System.Drawing.Color.White;
     tabDevices.ItemSize              = new System.Drawing.Size(80, 50);
     tabDevices.Location              = new System.Drawing.Point(-4, 50);
     tabDevices.Margin                = new System.Windows.Forms.Padding(0);
     tabDevices.Multiline             = true;
     tabDevices.Name                  = "tabDevices";
     tabDevices.Padding               = new System.Drawing.Point(15, 10);
     tabDevices.SelectedBorderColor   = System.Drawing.Color.FromArgb(((int)(((byte)(6)))), ((int)(((byte)(215)))), ((int)(((byte)(156)))));
     tabDevices.SelectedForeColor     = System.Drawing.Color.White;
     tabDevices.SelectedIndex         = 0;
     tabDevices.SelectedItemColor     = System.Drawing.Color.FromArgb(((int)(((byte)(6)))), ((int)(((byte)(215)))), ((int)(((byte)(156)))));
     tabDevices.SelectedItemLineColor = System.Drawing.Color.FromArgb(((int)(((byte)(6)))), ((int)(((byte)(215)))), ((int)(((byte)(156)))));
     tabDevices.SelectedItemLineWidth = 0;
     tabDevices.SelectedTabIsBold     = false;
     tabDevices.Size                  = new System.Drawing.Size(836, 522);
     tabDevices.SizeMode              = System.Windows.Forms.TabSizeMode.Fixed;
     tabDevices.TabContainerColor     = System.Drawing.Color.FromArgb(((int)(((byte)(21)))), ((int)(((byte)(32)))), ((int)(((byte)(54)))));
     tabDevices.TabIndex              = 7;
     //
     // _Add_Device
     //
     this._Add_Device.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(71)))));
     this._Add_Device.Location  = new System.Drawing.Point(4, 4);
     this._Add_Device.Name      = "_Add_Device";
     this._Add_Device.Padding   = new System.Windows.Forms.Padding(3);
     this._Add_Device.Size      = new System.Drawing.Size(828, 464);
     this._Add_Device.TabIndex  = 0;
     this._Add_Device.Text      = "Add Device";
     //
     // ESPRGB
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSize            = false;
     this.AutoValidate        = System.Windows.Forms.AutoValidate.EnablePreventFocusChange;
     this.BackColor           = System.Drawing.Color.FromArgb(((int)(((byte)(21)))), ((int)(((byte)(32)))), ((int)(((byte)(54)))));
     this.ClientSize          = new System.Drawing.Size(828, 570);
     tabDevices.Visible       = false;
     this.Controls.Add(tabDevices);
     this.Controls.Add(this.exitButton);
     this.Controls.Add(this.Title_text);
     this.Controls.Add(this.settingsButton);
     this.Controls.Add(this.minimizeButton);
     tabDevices.Visible   = true;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name            = "ESPRGB";
     this.SizeGripStyle   = System.Windows.Forms.SizeGripStyle.Hide;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "ESPRGB";
     this.WindowState     = System.Windows.Forms.FormWindowState.Minimized;
     this.FormClosing    += new System.Windows.Forms.FormClosingEventHandler(this.ESPRGB_Closing);
     this.Load           += new System.EventHandler(this.ESPRGB_Load);
     this.MouseDown      += new System.Windows.Forms.MouseEventHandler(this.window_MouseDown);
     this.MouseMove      += new System.Windows.Forms.MouseEventHandler(this.window_MouseMove);
     this.Resize         += new System.EventHandler(this.ESPRGB_Resize);
     trayContext.ResumeLayout(false);
     tabDevices.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 32
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.ContextMenuStrip          contextMenuStrip1;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
     this.toolStripMenuItem_EncryptDog = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem_PeopleCard = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem_MemberCard = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem_PalmPrints = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem_Printer    = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem_Exit       = new System.Windows.Forms.ToolStripMenuItem();
     this.notifyIcon1              = new System.Windows.Forms.NotifyIcon(this.components);
     this.tabControl1              = new System.Windows.Forms.TabControl();
     this.tabPage1                 = new System.Windows.Forms.TabPage();
     this.panel1                   = new System.Windows.Forms.Panel();
     this.btnWhoIs2                = new System.Windows.Forms.Button();
     this.btnWhoIs1                = new System.Windows.Forms.Button();
     this.axwhois_enroll_ocx1      = new Axwhois_enroll_ocxLib.Axwhois_enroll_ocx();
     this.axwhois_feature_extract1 = new Axwhois_feature_extractLib.Axwhois_feature_extract();
     this.tabPage2                 = new System.Windows.Forms.TabPage();
     this.button1                  = new System.Windows.Forms.Button();
     this.textBox1                 = new System.Windows.Forms.TextBox();
     this.label3                   = new System.Windows.Forms.Label();
     this.btnSavePrinterName       = new System.Windows.Forms.Button();
     this.txtPrinterName           = new System.Windows.Forms.TextBox();
     this.label1                   = new System.Windows.Forms.Label();
     this.btnSelectPrinter         = new System.Windows.Forms.Button();
     this.printDialog1             = new System.Windows.Forms.PrintDialog();
     this.tmrCheck                 = new System.Windows.Forms.Timer(this.components);
     this.tmrTimeOut               = new System.Windows.Forms.Timer(this.components);
     this.tmrUpdate                = new System.Windows.Forms.Timer(this.components);
     contextMenuStrip1             = new System.Windows.Forms.ContextMenuStrip(this.components);
     contextMenuStrip1.SuspendLayout();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.axwhois_enroll_ocx1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.axwhois_feature_extract1)).BeginInit();
     this.tabPage2.SuspendLayout();
     this.SuspendLayout();
     //
     // contextMenuStrip1
     //
     contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripMenuItem_EncryptDog,
         this.toolStripMenuItem_PeopleCard,
         this.toolStripMenuItem_MemberCard,
         this.toolStripMenuItem_PalmPrints,
         this.toolStripMenuItem_Printer,
         this.toolStripMenuItem_Exit
     });
     contextMenuStrip1.Name = "contextMenuStrip1";
     contextMenuStrip1.Size = new System.Drawing.Size(149, 136);
     //
     // toolStripMenuItem_EncryptDog
     //
     this.toolStripMenuItem_EncryptDog.Name = "toolStripMenuItem_EncryptDog";
     this.toolStripMenuItem_EncryptDog.Size = new System.Drawing.Size(148, 22);
     this.toolStripMenuItem_EncryptDog.Text = "加密狗";
     //
     // toolStripMenuItem_PeopleCard
     //
     this.toolStripMenuItem_PeopleCard.Name = "toolStripMenuItem_PeopleCard";
     this.toolStripMenuItem_PeopleCard.Size = new System.Drawing.Size(148, 22);
     this.toolStripMenuItem_PeopleCard.Text = "身份证识读器";
     //
     // toolStripMenuItem_MemberCard
     //
     this.toolStripMenuItem_MemberCard.Name = "toolStripMenuItem_MemberCard";
     this.toolStripMenuItem_MemberCard.Size = new System.Drawing.Size(148, 22);
     this.toolStripMenuItem_MemberCard.Text = "IC卡识读器";
     //
     // toolStripMenuItem_PalmPrints
     //
     this.toolStripMenuItem_PalmPrints.Name = "toolStripMenuItem_PalmPrints";
     this.toolStripMenuItem_PalmPrints.Size = new System.Drawing.Size(148, 22);
     this.toolStripMenuItem_PalmPrints.Text = "掌纹识别";
     //
     // toolStripMenuItem_Printer
     //
     this.toolStripMenuItem_Printer.Name = "toolStripMenuItem_Printer";
     this.toolStripMenuItem_Printer.Size = new System.Drawing.Size(148, 22);
     this.toolStripMenuItem_Printer.Text = "打印机";
     //
     // toolStripMenuItem_Exit
     //
     this.toolStripMenuItem_Exit.Name   = "toolStripMenuItem_Exit";
     this.toolStripMenuItem_Exit.Size   = new System.Drawing.Size(148, 22);
     this.toolStripMenuItem_Exit.Text   = "退出";
     this.toolStripMenuItem_Exit.Click += new System.EventHandler(this.toolStripMenuItem_Exit_Click);
     //
     // notifyIcon1
     //
     this.notifyIcon1.ContextMenuStrip  = contextMenuStrip1;
     this.notifyIcon1.Icon              = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon")));
     this.notifyIcon1.Text              = "莘宸托盘服务程序";
     this.notifyIcon1.Visible           = true;
     this.notifyIcon1.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.notifyIcon1_MouseDoubleClick);
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Controls.Add(this.tabPage2);
     this.tabControl1.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.tabControl1.Location      = new System.Drawing.Point(0, 0);
     this.tabControl1.Name          = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size          = new System.Drawing.Size(1056, 619);
     this.tabControl1.TabIndex      = 7;
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.panel1);
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Padding  = new System.Windows.Forms.Padding(3);
     this.tabPage1.Size     = new System.Drawing.Size(1048, 593);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text     = "掌纹识别";
     this.tabPage1.UseVisualStyleBackColor = true;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.btnWhoIs2);
     this.panel1.Controls.Add(this.btnWhoIs1);
     this.panel1.Controls.Add(this.axwhois_enroll_ocx1);
     this.panel1.Controls.Add(this.axwhois_feature_extract1);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(3, 3);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(1042, 587);
     this.panel1.TabIndex = 8;
     //
     // btnWhoIs2
     //
     this.btnWhoIs2.Location = new System.Drawing.Point(740, 433);
     this.btnWhoIs2.Name     = "btnWhoIs2";
     this.btnWhoIs2.Size     = new System.Drawing.Size(100, 30);
     this.btnWhoIs2.TabIndex = 6;
     this.btnWhoIs2.Text     = "识别掌纹";
     this.btnWhoIs2.UseVisualStyleBackColor = true;
     this.btnWhoIs2.Click += new System.EventHandler(this.btnWhoIs2_Click);
     //
     // btnWhoIs1
     //
     this.btnWhoIs1.Location = new System.Drawing.Point(199, 433);
     this.btnWhoIs1.Name     = "btnWhoIs1";
     this.btnWhoIs1.Size     = new System.Drawing.Size(100, 30);
     this.btnWhoIs1.TabIndex = 5;
     this.btnWhoIs1.Text     = "注册掌纹";
     this.btnWhoIs1.UseVisualStyleBackColor = true;
     this.btnWhoIs1.Click += new System.EventHandler(this.btnWhoIs1_Click);
     //
     // axwhois_enroll_ocx1
     //
     this.axwhois_enroll_ocx1.Enabled  = true;
     this.axwhois_enroll_ocx1.Location = new System.Drawing.Point(44, 77);
     this.axwhois_enroll_ocx1.Name     = "axwhois_enroll_ocx1";
     this.axwhois_enroll_ocx1.OcxState = ((System.Windows.Forms.AxHost.State)(resources.GetObject("axwhois_enroll_ocx1.OcxState")));
     this.axwhois_enroll_ocx1.Size     = new System.Drawing.Size(450, 320);
     this.axwhois_enroll_ocx1.TabIndex = 3;
     //
     // axwhois_feature_extract1
     //
     this.axwhois_feature_extract1.Enabled  = true;
     this.axwhois_feature_extract1.Location = new System.Drawing.Point(551, 77);
     this.axwhois_feature_extract1.Name     = "axwhois_feature_extract1";
     this.axwhois_feature_extract1.OcxState = ((System.Windows.Forms.AxHost.State)(resources.GetObject("axwhois_feature_extract1.OcxState")));
     this.axwhois_feature_extract1.Size     = new System.Drawing.Size(450, 320);
     this.axwhois_feature_extract1.TabIndex = 4;
     //
     // tabPage2
     //
     this.tabPage2.Controls.Add(this.button1);
     this.tabPage2.Controls.Add(this.textBox1);
     this.tabPage2.Controls.Add(this.label3);
     this.tabPage2.Controls.Add(this.btnSavePrinterName);
     this.tabPage2.Controls.Add(this.txtPrinterName);
     this.tabPage2.Controls.Add(this.label1);
     this.tabPage2.Controls.Add(this.btnSelectPrinter);
     this.tabPage2.Location = new System.Drawing.Point(4, 22);
     this.tabPage2.Name     = "tabPage2";
     this.tabPage2.Padding  = new System.Windows.Forms.Padding(3);
     this.tabPage2.Size     = new System.Drawing.Size(1048, 593);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text     = "系统设置";
     this.tabPage2.UseVisualStyleBackColor = true;
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(285, 51);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(68, 23);
     this.button1.TabIndex = 7;
     this.button1.Text     = "保存";
     this.button1.UseVisualStyleBackColor = true;
     //
     // textBox1
     //
     this.textBox1.Location = new System.Drawing.Point(149, 52);
     this.textBox1.Name     = "textBox1";
     this.textBox1.Size     = new System.Drawing.Size(130, 21);
     this.textBox1.TabIndex = 6;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(22, 57);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(71, 12);
     this.label3.TabIndex = 5;
     this.label3.Text     = "TCP端口号:";
     //
     // btnSavePrinterName
     //
     this.btnSavePrinterName.Location = new System.Drawing.Point(285, 20);
     this.btnSavePrinterName.Name     = "btnSavePrinterName";
     this.btnSavePrinterName.Size     = new System.Drawing.Size(68, 23);
     this.btnSavePrinterName.TabIndex = 4;
     this.btnSavePrinterName.Text     = "保存";
     this.btnSavePrinterName.UseVisualStyleBackColor = true;
     //
     // txtPrinterName
     //
     this.txtPrinterName.Location = new System.Drawing.Point(149, 21);
     this.txtPrinterName.Name     = "txtPrinterName";
     this.txtPrinterName.Size     = new System.Drawing.Size(130, 21);
     this.txtPrinterName.TabIndex = 2;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(22, 26);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(77, 12);
     this.label1.TabIndex = 1;
     this.label1.Text     = "打印机设置:";
     //
     // btnSelectPrinter
     //
     this.btnSelectPrinter.Location = new System.Drawing.Point(105, 20);
     this.btnSelectPrinter.Name     = "btnSelectPrinter";
     this.btnSelectPrinter.Size     = new System.Drawing.Size(38, 23);
     this.btnSelectPrinter.TabIndex = 0;
     this.btnSelectPrinter.Text     = "选择";
     this.btnSelectPrinter.UseVisualStyleBackColor = true;
     //
     // printDialog1
     //
     this.printDialog1.UseEXDialog = true;
     //
     // tmrCheck
     //
     this.tmrCheck.Interval = 1000;
     this.tmrCheck.Tick    += new System.EventHandler(this.tmrCheck_Tick);
     //
     // tmrTimeOut
     //
     this.tmrTimeOut.Enabled  = true;
     this.tmrTimeOut.Interval = 1000;
     this.tmrTimeOut.Tick    += new System.EventHandler(this.tmrTimeOut_Tick);
     //
     // tmrUpdate
     //
     this.tmrUpdate.Enabled  = true;
     this.tmrUpdate.Interval = 1000;
     this.tmrUpdate.Tick    += new System.EventHandler(this.tmrUpdate_Tick);
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1056, 619);
     this.Controls.Add(this.tabControl1);
     this.Name         = "MainForm";
     this.Text         = "莘宸服务程序";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
     this.Load        += new System.EventHandler(this.Form1_Load);
     this.SizeChanged += new System.EventHandler(this.MainForm_SizeChanged);
     contextMenuStrip1.ResumeLayout(false);
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.axwhois_enroll_ocx1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.axwhois_feature_extract1)).EndInit();
     this.tabPage2.ResumeLayout(false);
     this.tabPage2.PerformLayout();
     this.ResumeLayout(false);
 }
		/// <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.Windows.Forms.ContextMenuStrip m_contextMenu;
			System.Windows.Forms.ToolStripMenuItem m_ctxEditComputerList;
			System.Windows.Forms.ToolStripMenuItem m_ctxResetWindowPos;
			System.Windows.Forms.ToolStripMenuItem m_ctxAbout;
			this.m_ConnectButton = new System.Windows.Forms.Button();
			this.m_Timer = new System.Windows.Forms.Timer(this.components);
			this.m_AliasLabel = new System.Windows.Forms.Label();
			this.m_ComputerLabel = new System.Windows.Forms.Label();
			this.m_LogoPictureBox = new MillerX.RemoteDesktopPlus.LogoPictureBox();
			this.m_ComputerComboBox = new MillerX.RemoteDesktopPlus.ComputerComboBox();
			this.m_AliasComboBox = new System.Windows.Forms.ComboBox();
			this.m_ToolTip = new System.Windows.Forms.ToolTip(this.components);
			this.m_DrivesButton = new MillerX.RemoteDesktopPlus.SharedDrivesButton();
			this.m_AudioButton = new MillerX.RemoteDesktopPlus.AudioDestButton();
			this.m_ExpandAliasButton = new System.Windows.Forms.Button();
			m_contextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
			m_ctxEditComputerList = new System.Windows.Forms.ToolStripMenuItem();
			m_ctxResetWindowPos = new System.Windows.Forms.ToolStripMenuItem();
			m_ctxAbout = new System.Windows.Forms.ToolStripMenuItem();
			m_contextMenu.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.m_LogoPictureBox)).BeginInit();
			this.SuspendLayout();
			// 
			// m_contextMenu
			// 
			m_contextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            m_ctxEditComputerList,
            m_ctxResetWindowPos,
            m_ctxAbout});
			m_contextMenu.Name = "m_contextMenu";
			m_contextMenu.Size = new System.Drawing.Size(214, 92);
			// 
			// m_ctxEditComputerList
			// 
			m_ctxEditComputerList.Name = "m_ctxEditComputerList";
			m_ctxEditComputerList.Size = new System.Drawing.Size(213, 22);
			m_ctxEditComputerList.Text = "Edit Computer List";
			m_ctxEditComputerList.Click += new System.EventHandler(this.m_ctxEditComputerList_Click);
			// 
			// m_ctxResetWindowPos
			// 
			m_ctxResetWindowPos.Name = "m_ctxResetWindowPos";
			m_ctxResetWindowPos.Size = new System.Drawing.Size(213, 22);
			m_ctxResetWindowPos.Text = "Reset RD Window Position";
			m_ctxResetWindowPos.Click += new System.EventHandler(this.m_ctxResetWindowPos_Click);
			// 
			// m_ctxAbout
			// 
			m_ctxAbout.Name = "m_ctxAbout";
			m_ctxAbout.Size = new System.Drawing.Size(213, 22);
			m_ctxAbout.Text = "About...";
			m_ctxAbout.Click += new System.EventHandler(this.m_ctxAbout_Click);
			// 
			// m_ConnectButton
			// 
			this.m_ConnectButton.Location = new System.Drawing.Point(235, 157);
			this.m_ConnectButton.Name = "m_ConnectButton";
			this.m_ConnectButton.Size = new System.Drawing.Size(75, 28);
			this.m_ConnectButton.TabIndex = 6;
			this.m_ConnectButton.Text = "Connect";
			this.m_ConnectButton.UseVisualStyleBackColor = true;
			this.m_ConnectButton.Click += new System.EventHandler(this.m_ConnectButton_Click);
			// 
			// m_Timer
			// 
			this.m_Timer.Interval = 3000;
			this.m_Timer.Tick += new System.EventHandler(this.m_Timer_Tick);
			// 
			// m_AliasLabel
			// 
			this.m_AliasLabel.AutoSize = true;
			this.m_AliasLabel.Location = new System.Drawing.Point(11, 119);
			this.m_AliasLabel.Name = "m_AliasLabel";
			this.m_AliasLabel.Size = new System.Drawing.Size(32, 13);
			this.m_AliasLabel.TabIndex = 2;
			this.m_AliasLabel.Text = "&Alias:";
			// 
			// m_ComputerLabel
			// 
			this.m_ComputerLabel.AutoSize = true;
			this.m_ComputerLabel.Location = new System.Drawing.Point(11, 91);
			this.m_ComputerLabel.Name = "m_ComputerLabel";
			this.m_ComputerLabel.Size = new System.Drawing.Size(55, 13);
			this.m_ComputerLabel.TabIndex = 0;
			this.m_ComputerLabel.Text = "&Computer:";
			// 
			// m_LogoPictureBox
			// 
			this.m_LogoPictureBox.Dock = System.Windows.Forms.DockStyle.Top;
			this.m_LogoPictureBox.Location = new System.Drawing.Point(0, 0);
			this.m_LogoPictureBox.Name = "m_LogoPictureBox";
			this.m_LogoPictureBox.Size = new System.Drawing.Size(350, 72);
			this.m_LogoPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
			this.m_LogoPictureBox.TabIndex = 12;
			this.m_LogoPictureBox.TabStop = false;
			// 
			// m_ComputerComboBox
			// 
			this.m_ComputerComboBox.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Append;
			this.m_ComputerComboBox.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
			this.m_ComputerComboBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
			this.m_ComputerComboBox.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.m_ComputerComboBox.FormattingEnabled = true;
			this.m_ComputerComboBox.IntegralHeight = false;
			this.m_ComputerComboBox.Location = new System.Drawing.Point(81, 88);
			this.m_ComputerComboBox.Name = "m_ComputerComboBox";
			this.m_ComputerComboBox.Size = new System.Drawing.Size(229, 21);
			this.m_ComputerComboBox.TabIndex = 1;
			this.m_ComputerComboBox.ComputerChanged += new System.EventHandler<MillerX.RemoteDesktopPlus.DataEventArgs>(this.m_ComputerComboBox_ComputerChanged);
			this.m_ComputerComboBox.SelectedIndexChanged += new System.EventHandler(this.m_ComputerComboBox_SelectedIndexChanged);
			// 
			// m_AliasComboBox
			// 
			this.m_AliasComboBox.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Append;
			this.m_AliasComboBox.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
			this.m_AliasComboBox.IntegralHeight = false;
			this.m_AliasComboBox.Location = new System.Drawing.Point(81, 116);
			this.m_AliasComboBox.Name = "m_AliasComboBox";
			this.m_AliasComboBox.Size = new System.Drawing.Size(229, 21);
			this.m_AliasComboBox.TabIndex = 3;
			// 
			// m_DrivesButton
			// 
			this.m_DrivesButton.Location = new System.Drawing.Point(71, 157);
			this.m_DrivesButton.Name = "m_DrivesButton";
			this.m_DrivesButton.Size = new System.Drawing.Size(52, 45);
			this.m_DrivesButton.TabIndex = 13;
			this.m_ToolTip.SetToolTip(this.m_DrivesButton, "Shared drives.");
			this.m_DrivesButton.UseVisualStyleBackColor = true;
			// 
			// m_AudioButton
			// 
			this.m_AudioButton.Location = new System.Drawing.Point(12, 157);
			this.m_AudioButton.Name = "m_AudioButton";
			this.m_AudioButton.Size = new System.Drawing.Size(52, 45);
			this.m_AudioButton.TabIndex = 4;
			this.m_AudioButton.UseVisualStyleBackColor = true;
			// 
			// m_ExpandAliasButton
			// 
			this.m_ExpandAliasButton.Enabled = false;
			this.m_ExpandAliasButton.Location = new System.Drawing.Point(316, 100);
			this.m_ExpandAliasButton.Name = "m_ExpandAliasButton";
			this.m_ExpandAliasButton.Size = new System.Drawing.Size(23, 23);
			this.m_ExpandAliasButton.TabIndex = 14;
			this.m_ExpandAliasButton.Text = "S";
			this.m_ExpandAliasButton.UseVisualStyleBackColor = true;
			this.m_ExpandAliasButton.Click += new System.EventHandler(this.m_ExpandAliasButton_Click);
			// 
			// RemoteDesktopDialog
			// 
			this.AcceptButton = this.m_ConnectButton;
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(243)))), ((int)(((byte)(247)))));
			this.ClientSize = new System.Drawing.Size(350, 210);
			this.ContextMenuStrip = m_contextMenu;
			this.Controls.Add(this.m_ExpandAliasButton);
			this.Controls.Add(this.m_DrivesButton);
			this.Controls.Add(this.m_AliasLabel);
			this.Controls.Add(this.m_ComputerLabel);
			this.Controls.Add(this.m_AudioButton);
			this.Controls.Add(this.m_LogoPictureBox);
			this.Controls.Add(this.m_ComputerComboBox);
			this.Controls.Add(this.m_AliasComboBox);
			this.Controls.Add(this.m_ConnectButton);
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
			this.MaximizeBox = false;
			this.Name = "RemoteDesktopDialog";
			this.Text = "Remote Desktop Plus";
			m_contextMenu.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.m_LogoPictureBox)).EndInit();
			this.ResumeLayout(false);
			this.PerformLayout();

		}
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            components = new System.ComponentModel.Container();
            _MenuStripMain = new System.Windows.Forms.MenuStrip();
            _StatusStripMain = new System.Windows.Forms.StatusStrip();
            _SplitContainerMain = new System.Windows.Forms.SplitContainer();
            _DataGridViewDevicesList = new System.Windows.Forms.DataGridView();
            _ContextMenuStripDevicesList = new System.Windows.Forms.ContextMenuStrip(components);
            _ToolStripMenuItemAddDevice = new System.Windows.Forms.ToolStripMenuItem();
            _ToolStripMenuItemRemoveDevice = new System.Windows.Forms.ToolStripMenuItem();
            _TabControlDevice = new System.Windows.Forms.TabControl();
            _TabPageHoldingRegisters = new System.Windows.Forms.TabPage();
            _DataGridViewHoldingRegisters = new System.Windows.Forms.DataGridView();
            _ContextMenuStripHoldingRegisters = new System.Windows.Forms.ContextMenuStrip(components);
            _ToolStripMenuItemAddHoldingRegister = new System.Windows.Forms.ToolStripMenuItem();
            _ToolStripMenuItemRemoveHoldingRegister = new System.Windows.Forms.ToolStripMenuItem();
            _TabPageInputRegisters = new System.Windows.Forms.TabPage();
            _DataGridViewInputRegisters = new System.Windows.Forms.DataGridView();
            _ContextMenuStripInputRegisters = new System.Windows.Forms.ContextMenuStrip(components);
            _ToolStripMenuItemAddInputRegister = new System.Windows.Forms.ToolStripMenuItem();
            _ToolStripMenuItemRemoveInputRegister = new System.Windows.Forms.ToolStripMenuItem();
            _TabPageCoils = new System.Windows.Forms.TabPage();
            _DataGridViewCoils = new System.Windows.Forms.DataGridView();
            _ContextMenuStripCoils = new System.Windows.Forms.ContextMenuStrip(components);
            _ToolStripMenuItemAddCoil = new System.Windows.Forms.ToolStripMenuItem();
            _ToolStripMenuItemRemoveCoil = new System.Windows.Forms.ToolStripMenuItem();
            _TabPageDiscretesInputs = new System.Windows.Forms.TabPage();
            _DataGridViewDiscretesInputs = new System.Windows.Forms.DataGridView();
            _ContextMenuStripDiscretesInputs = new System.Windows.Forms.ContextMenuStrip(components);
            _ToolStripMenuItemAddDiscreteInput = new System.Windows.Forms.ToolStripMenuItem();
            _ToolStripMenuItemRemoveDiscreteInput = new System.Windows.Forms.ToolStripMenuItem();
            _TabPageFiles = new System.Windows.Forms.TabPage();
            _SplitContainerFiles = new System.Windows.Forms.SplitContainer();
            _DataGridViewFiles = new System.Windows.Forms.DataGridView();
            _ContextMenuStripFiles = new System.Windows.Forms.ContextMenuStrip(components);
            _ToolStripMenuItemAddFile = new System.Windows.Forms.ToolStripMenuItem();
            _ToolStripMenuItemRemoveFile = new System.Windows.Forms.ToolStripMenuItem();
            _DataGridViewRecords = new System.Windows.Forms.DataGridView();
            _ContextMenuStripRecords = new System.Windows.Forms.ContextMenuStrip(components);
            _ToolStripMenuItemAddRecord = new System.Windows.Forms.ToolStripMenuItem();
            _ToolStripMenuItemRemoveRecord = new System.Windows.Forms.ToolStripMenuItem();
            _SplitContainerMain.Panel1.SuspendLayout();
            _SplitContainerMain.Panel2.SuspendLayout();
            _SplitContainerMain.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(_DataGridViewDevicesList)).BeginInit();
            _ContextMenuStripDevicesList.SuspendLayout();
            _TabControlDevice.SuspendLayout();
            _TabPageHoldingRegisters.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(_DataGridViewHoldingRegisters)).BeginInit();
            _ContextMenuStripHoldingRegisters.SuspendLayout();
            _TabPageInputRegisters.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(_DataGridViewInputRegisters)).BeginInit();
            _ContextMenuStripInputRegisters.SuspendLayout();
            _TabPageCoils.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(_DataGridViewCoils)).BeginInit();
            _ContextMenuStripCoils.SuspendLayout();
            _TabPageDiscretesInputs.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(_DataGridViewDiscretesInputs)).BeginInit();
            _ContextMenuStripDiscretesInputs.SuspendLayout();
            _TabPageFiles.SuspendLayout();
            _SplitContainerFiles.Panel1.SuspendLayout();
            _SplitContainerFiles.Panel2.SuspendLayout();
            _SplitContainerFiles.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(_DataGridViewFiles)).BeginInit();
            _ContextMenuStripFiles.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(_DataGridViewRecords)).BeginInit();
            _ContextMenuStripRecords.SuspendLayout();
            SuspendLayout();
            // 
            // _MenuStripMain
            // 
            _MenuStripMain.Location = new System.Drawing.Point(0, 0);
            _MenuStripMain.Name = "_MenuStripMain";
            _MenuStripMain.Size = new System.Drawing.Size(880, 24);
            _MenuStripMain.TabIndex = 0;
            _MenuStripMain.Text = "menuStrip1";
            // 
            // _StatusStripMain
            // 
            _StatusStripMain.Location = new System.Drawing.Point(0, 434);
            _StatusStripMain.Name = "_StatusStripMain";
            _StatusStripMain.Size = new System.Drawing.Size(880, 22);
            _StatusStripMain.TabIndex = 1;
            _StatusStripMain.Text = "statusStrip1";
            // 
            // _SplitContainerMain
            // 
            _SplitContainerMain.Dock = System.Windows.Forms.DockStyle.Fill;
            _SplitContainerMain.Location = new System.Drawing.Point(0, 24);
            _SplitContainerMain.Name = "_SplitContainerMain";
            // 
            // _SplitContainerMain.Panel1
            // 
            _SplitContainerMain.Panel1.Controls.Add(_DataGridViewDevicesList);
            // 
            // _SplitContainerMain.Panel2
            // 
            _SplitContainerMain.Panel2.Controls.Add(_TabControlDevice);
            _SplitContainerMain.Size = new System.Drawing.Size(880, 410);
            _SplitContainerMain.SplitterDistance = 292;
            _SplitContainerMain.TabIndex = 3;
            // 
            // _DataGridViewDevicesList
            // 
            _DataGridViewDevicesList.AllowUserToAddRows = false;
            _DataGridViewDevicesList.AllowUserToDeleteRows = false;
            _DataGridViewDevicesList.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            _DataGridViewDevicesList.ContextMenuStrip = _ContextMenuStripDevicesList;
            _DataGridViewDevicesList.Dock = System.Windows.Forms.DockStyle.Fill;
            _DataGridViewDevicesList.Location = new System.Drawing.Point(0, 0);
            _DataGridViewDevicesList.Name = "_DataGridViewDevicesList";
            _DataGridViewDevicesList.RowTemplate.Height = 24;
            _DataGridViewDevicesList.Size = new System.Drawing.Size(292, 410);
            _DataGridViewDevicesList.TabIndex = 0;
            // 
            // _ContextMenuStripDevicesList
            // 
            _ContextMenuStripDevicesList.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            _ToolStripMenuItemAddDevice,
            _ToolStripMenuItemRemoveDevice});
            _ContextMenuStripDevicesList.Name = "_ContextMenuStripTreeViewNetwork";
            _ContextMenuStripDevicesList.Size = new System.Drawing.Size(146, 52);
            // 
            // _ToolStripMenuItemAddDevice
            // 
            _ToolStripMenuItemAddDevice.Name = "_ToolStripMenuItemAddDevice";
            _ToolStripMenuItemAddDevice.Size = new System.Drawing.Size(145, 24);
            _ToolStripMenuItemAddDevice.Text = "Добавить";
            _ToolStripMenuItemAddDevice.Click += new System.EventHandler(EventHandler_ToolStripMenuItemAddDevice_Click);
            // 
            // _ToolStripMenuItemRemoveDevice
            // 
            _ToolStripMenuItemRemoveDevice.Name = "_ToolStripMenuItemRemoveDevice";
            _ToolStripMenuItemRemoveDevice.Size = new System.Drawing.Size(145, 24);
            _ToolStripMenuItemRemoveDevice.Text = "Удалить";
            _ToolStripMenuItemRemoveDevice.Click += new System.EventHandler(EventHandler_ToolStripMenuItemRemoveDevice_Click);
            // 
            // _TabControlDevice
            // 
            _TabControlDevice.Controls.Add(_TabPageHoldingRegisters);
            _TabControlDevice.Controls.Add(_TabPageInputRegisters);
            _TabControlDevice.Controls.Add(_TabPageCoils);
            _TabControlDevice.Controls.Add(_TabPageDiscretesInputs);
            _TabControlDevice.Controls.Add(_TabPageFiles);
            _TabControlDevice.Dock = System.Windows.Forms.DockStyle.Fill;
            _TabControlDevice.Location = new System.Drawing.Point(0, 0);
            _TabControlDevice.Name = "_TabControlDevice";
            _TabControlDevice.SelectedIndex = 0;
            _TabControlDevice.Size = new System.Drawing.Size(584, 410);
            _TabControlDevice.TabIndex = 0;
            // 
            // _TabPageHoldingRegisters
            // 
            _TabPageHoldingRegisters.Controls.Add(_DataGridViewHoldingRegisters);
            _TabPageHoldingRegisters.Location = new System.Drawing.Point(4, 25);
            _TabPageHoldingRegisters.Name = "_TabPageHoldingRegisters";
            _TabPageHoldingRegisters.Padding = new System.Windows.Forms.Padding(3);
            _TabPageHoldingRegisters.Size = new System.Drawing.Size(576, 381);
            _TabPageHoldingRegisters.TabIndex = 0;
            _TabPageHoldingRegisters.Text = "Holding Registers";
            _TabPageHoldingRegisters.UseVisualStyleBackColor = true;
            // 
            // _DataGridViewHoldingRegisters
            // 
            _DataGridViewHoldingRegisters.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            _DataGridViewHoldingRegisters.ContextMenuStrip = _ContextMenuStripHoldingRegisters;
            _DataGridViewHoldingRegisters.Dock = System.Windows.Forms.DockStyle.Fill;
            _DataGridViewHoldingRegisters.Location = new System.Drawing.Point(3, 3);
            _DataGridViewHoldingRegisters.MultiSelect = false;
            _DataGridViewHoldingRegisters.Name = "_DataGridViewHoldingRegisters";
            _DataGridViewHoldingRegisters.RowTemplate.Height = 24;
            _DataGridViewHoldingRegisters.Size = new System.Drawing.Size(570, 375);
            _DataGridViewHoldingRegisters.TabIndex = 0;
            // 
            // _ContextMenuStripHoldingRegisters
            // 
            _ContextMenuStripHoldingRegisters.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            _ToolStripMenuItemAddHoldingRegister,
            _ToolStripMenuItemRemoveHoldingRegister});
            _ContextMenuStripHoldingRegisters.Name = "_ContextMenuStripHoldingRegisters";
            _ContextMenuStripHoldingRegisters.Size = new System.Drawing.Size(204, 52);
            // 
            // _ToolStripMenuItemAddHoldingRegister
            // 
            _ToolStripMenuItemAddHoldingRegister.Name = "_ToolStripMenuItemAddHoldingRegister";
            _ToolStripMenuItemAddHoldingRegister.Size = new System.Drawing.Size(203, 24);
            _ToolStripMenuItemAddHoldingRegister.Text = "Добавить регистр";
            _ToolStripMenuItemAddHoldingRegister.Click += new System.EventHandler(EventHandler_ToolStripMenuItemAddHoldingRegister_Click);
            // 
            // _ToolStripMenuItemRemoveHoldingRegister
            // 
            _ToolStripMenuItemRemoveHoldingRegister.Name = "_ToolStripMenuItemRemoveHoldingRegister";
            _ToolStripMenuItemRemoveHoldingRegister.Size = new System.Drawing.Size(203, 24);
            _ToolStripMenuItemRemoveHoldingRegister.Text = "Удалить регистр";
            _ToolStripMenuItemRemoveHoldingRegister.Click += new System.EventHandler(EventHandler_ToolStripMenuItemRemoveHoldingRegister_Click);
            // 
            // _TabPageInputRegisters
            // 
            _TabPageInputRegisters.Controls.Add(_DataGridViewInputRegisters);
            _TabPageInputRegisters.Location = new System.Drawing.Point(4, 25);
            _TabPageInputRegisters.Name = "_TabPageInputRegisters";
            _TabPageInputRegisters.Padding = new System.Windows.Forms.Padding(3);
            _TabPageInputRegisters.Size = new System.Drawing.Size(576, 381);
            _TabPageInputRegisters.TabIndex = 1;
            _TabPageInputRegisters.Text = "Input Registers";
            _TabPageInputRegisters.UseVisualStyleBackColor = true;
            // 
            // _DataGridViewInputRegisters
            // 
            _DataGridViewInputRegisters.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            _DataGridViewInputRegisters.ContextMenuStrip = _ContextMenuStripInputRegisters;
            _DataGridViewInputRegisters.Dock = System.Windows.Forms.DockStyle.Fill;
            _DataGridViewInputRegisters.Location = new System.Drawing.Point(3, 3);
            _DataGridViewInputRegisters.Name = "_DataGridViewInputRegisters";
            _DataGridViewInputRegisters.RowTemplate.Height = 24;
            _DataGridViewInputRegisters.Size = new System.Drawing.Size(570, 375);
            _DataGridViewInputRegisters.TabIndex = 0;
            // 
            // _ContextMenuStripInputRegisters
            // 
            _ContextMenuStripInputRegisters.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            _ToolStripMenuItemAddInputRegister,
            _ToolStripMenuItemRemoveInputRegister});
            _ContextMenuStripInputRegisters.Name = "_ContextMenuStripInputRegisters";
            _ContextMenuStripInputRegisters.Size = new System.Drawing.Size(204, 52);
            // 
            // _ToolStripMenuItemAddInputRegister
            // 
            _ToolStripMenuItemAddInputRegister.Name = "_ToolStripMenuItemAddInputRegister";
            _ToolStripMenuItemAddInputRegister.Size = new System.Drawing.Size(203, 24);
            _ToolStripMenuItemAddInputRegister.Text = "Добавить регистр";
            _ToolStripMenuItemAddInputRegister.Click += new System.EventHandler(EventHandler_ToolStripMenuItemAddInputRegister_Click);
            // 
            // _ToolStripMenuItemRemoveInputRegister
            // 
            _ToolStripMenuItemRemoveInputRegister.Name = "_ToolStripMenuItemRemoveInputRegister";
            _ToolStripMenuItemRemoveInputRegister.Size = new System.Drawing.Size(203, 24);
            _ToolStripMenuItemRemoveInputRegister.Text = "Удалить регистр";
            _ToolStripMenuItemRemoveInputRegister.Click += new System.EventHandler(EventHandler_ToolStripMenuItemRemoveInputRegister_Click);
            // 
            // _TabPageCoils
            // 
            _TabPageCoils.Controls.Add(_DataGridViewCoils);
            _TabPageCoils.Location = new System.Drawing.Point(4, 25);
            _TabPageCoils.Name = "_TabPageCoils";
            _TabPageCoils.Size = new System.Drawing.Size(576, 381);
            _TabPageCoils.TabIndex = 2;
            _TabPageCoils.Text = "Coils";
            _TabPageCoils.UseVisualStyleBackColor = true;
            // 
            // _DataGridViewCoils
            // 
            _DataGridViewCoils.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            _DataGridViewCoils.ContextMenuStrip = _ContextMenuStripCoils;
            _DataGridViewCoils.Dock = System.Windows.Forms.DockStyle.Fill;
            _DataGridViewCoils.Location = new System.Drawing.Point(0, 0);
            _DataGridViewCoils.Name = "_DataGridViewCoils";
            _DataGridViewCoils.RowTemplate.Height = 24;
            _DataGridViewCoils.Size = new System.Drawing.Size(576, 381);
            _DataGridViewCoils.TabIndex = 0;
            // 
            // _ContextMenuStripCoils
            // 
            _ContextMenuStripCoils.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            _ToolStripMenuItemAddCoil,
            _ToolStripMenuItemRemoveCoil});
            _ContextMenuStripCoils.Name = "_ContextMenuStripCoils";
            _ContextMenuStripCoils.Size = new System.Drawing.Size(278, 52);
            // 
            // _ToolStripMenuItemAddCoil
            // 
            _ToolStripMenuItemAddCoil.Name = "_ToolStripMenuItemAddCoil";
            _ToolStripMenuItemAddCoil.Size = new System.Drawing.Size(277, 24);
            _ToolStripMenuItemAddCoil.Text = "Добавить дискр. вход/выход";
            _ToolStripMenuItemAddCoil.Click += new System.EventHandler(EventHandler_ToolStripMenuItemAddCoil_Click);
            // 
            // _ToolStripMenuItemRemoveCoil
            // 
            _ToolStripMenuItemRemoveCoil.Name = "_ToolStripMenuItemRemoveCoil";
            _ToolStripMenuItemRemoveCoil.Size = new System.Drawing.Size(277, 24);
            _ToolStripMenuItemRemoveCoil.Text = "Удалить дискр. вход/выход";
            _ToolStripMenuItemRemoveCoil.Click += new System.EventHandler(EventHandler_ToolStripMenuItemRemoveCoil_Click);
            // 
            // _TabPageDiscretesInputs
            // 
            _TabPageDiscretesInputs.Controls.Add(_DataGridViewDiscretesInputs);
            _TabPageDiscretesInputs.Location = new System.Drawing.Point(4, 25);
            _TabPageDiscretesInputs.Name = "_TabPageDiscretesInputs";
            _TabPageDiscretesInputs.Size = new System.Drawing.Size(576, 381);
            _TabPageDiscretesInputs.TabIndex = 3;
            _TabPageDiscretesInputs.Text = "Discretes Inputs";
            _TabPageDiscretesInputs.UseVisualStyleBackColor = true;
            // 
            // _DataGridViewDiscretesInputs
            // 
            _DataGridViewDiscretesInputs.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            _DataGridViewDiscretesInputs.ContextMenuStrip = _ContextMenuStripDiscretesInputs;
            _DataGridViewDiscretesInputs.Dock = System.Windows.Forms.DockStyle.Fill;
            _DataGridViewDiscretesInputs.Location = new System.Drawing.Point(0, 0);
            _DataGridViewDiscretesInputs.Name = "_DataGridViewDiscretesInputs";
            _DataGridViewDiscretesInputs.RowTemplate.Height = 24;
            _DataGridViewDiscretesInputs.Size = new System.Drawing.Size(576, 381);
            _DataGridViewDiscretesInputs.TabIndex = 0;
            // 
            // _ContextMenuStripDiscretesInputs
            // 
            _ContextMenuStripDiscretesInputs.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            _ToolStripMenuItemAddDiscreteInput,
            _ToolStripMenuItemRemoveDiscreteInput});
            _ContextMenuStripDiscretesInputs.Name = "_ContextMenuStripDiscretesInputs";
            _ContextMenuStripDiscretesInputs.Size = new System.Drawing.Size(269, 52);
            // 
            // _ToolStripMenuItemAddDiscreteInput
            // 
            _ToolStripMenuItemAddDiscreteInput.Name = "_ToolStripMenuItemAddDiscreteInput";
            _ToolStripMenuItemAddDiscreteInput.Size = new System.Drawing.Size(268, 24);
            _ToolStripMenuItemAddDiscreteInput.Text = "Добавить дискретный вход";
            _ToolStripMenuItemAddDiscreteInput.Click += new System.EventHandler(EventHandler_ToolStripMenuItemAddDiscreteInput_Click);
            // 
            // _ToolStripMenuItemRemoveDiscreteInput
            // 
            _ToolStripMenuItemRemoveDiscreteInput.Name = "_ToolStripMenuItemRemoveDiscreteInput";
            _ToolStripMenuItemRemoveDiscreteInput.Size = new System.Drawing.Size(268, 24);
            _ToolStripMenuItemRemoveDiscreteInput.Text = "Удалить дискретный вход";
            _ToolStripMenuItemRemoveDiscreteInput.Click += new System.EventHandler(EventHandler_ToolStripMenuItemRemoveDiscreteInput_Click);
            // 
            // _TabPageFiles
            // 
            _TabPageFiles.Controls.Add(_SplitContainerFiles);
            _TabPageFiles.Location = new System.Drawing.Point(4, 25);
            _TabPageFiles.Name = "_TabPageFiles";
            _TabPageFiles.Size = new System.Drawing.Size(576, 381);
            _TabPageFiles.TabIndex = 4;
            _TabPageFiles.Text = "Files";
            _TabPageFiles.UseVisualStyleBackColor = true;
            // 
            // _SplitContainerFiles
            // 
            _SplitContainerFiles.Dock = System.Windows.Forms.DockStyle.Fill;
            _SplitContainerFiles.Location = new System.Drawing.Point(0, 0);
            _SplitContainerFiles.Name = "_SplitContainerFiles";
            _SplitContainerFiles.Orientation = System.Windows.Forms.Orientation.Horizontal;
            // 
            // _SplitContainerFiles.Panel1
            // 
            _SplitContainerFiles.Panel1.Controls.Add(_DataGridViewFiles);
            // 
            // _SplitContainerFiles.Panel2
            // 
            _SplitContainerFiles.Panel2.Controls.Add(_DataGridViewRecords);
            _SplitContainerFiles.Size = new System.Drawing.Size(576, 381);
            _SplitContainerFiles.SplitterDistance = 194;
            _SplitContainerFiles.TabIndex = 0;
            // 
            // _DataGridViewFiles
            // 
            _DataGridViewFiles.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            _DataGridViewFiles.ContextMenuStrip = _ContextMenuStripFiles;
            _DataGridViewFiles.Dock = System.Windows.Forms.DockStyle.Fill;
            _DataGridViewFiles.Location = new System.Drawing.Point(0, 0);
            _DataGridViewFiles.Name = "_DataGridViewFiles";
            _DataGridViewFiles.RowTemplate.Height = 24;
            _DataGridViewFiles.Size = new System.Drawing.Size(576, 194);
            _DataGridViewFiles.TabIndex = 0;
            // 
            // _ContextMenuStripFiles
            // 
            _ContextMenuStripFiles.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            _ToolStripMenuItemAddFile,
            _ToolStripMenuItemRemoveFile});
            _ContextMenuStripFiles.Name = "_ContextMenuStripFiles";
            _ContextMenuStripFiles.Size = new System.Drawing.Size(185, 52);
            // 
            // _ToolStripMenuItemAddFile
            // 
            _ToolStripMenuItemAddFile.Name = "_ToolStripMenuItemAddFile";
            _ToolStripMenuItemAddFile.Size = new System.Drawing.Size(184, 24);
            _ToolStripMenuItemAddFile.Text = "Добавить файл";
            _ToolStripMenuItemAddFile.Click += new System.EventHandler(EventHandler_ToolStripMenuItemAddFile_Click);
            // 
            // _ToolStripMenuItemRemoveFile
            // 
            _ToolStripMenuItemRemoveFile.Name = "_ToolStripMenuItemRemoveFile";
            _ToolStripMenuItemRemoveFile.Size = new System.Drawing.Size(184, 24);
            _ToolStripMenuItemRemoveFile.Text = "Удалить файл";
            _ToolStripMenuItemRemoveFile.Click += new System.EventHandler(EventHandler_ToolStripMenuItemRemoveFile_Click);
            // 
            // _DataGridViewRecords
            // 
            _DataGridViewRecords.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            _DataGridViewRecords.ContextMenuStrip = _ContextMenuStripRecords;
            _DataGridViewRecords.Dock = System.Windows.Forms.DockStyle.Fill;
            _DataGridViewRecords.Location = new System.Drawing.Point(0, 0);
            _DataGridViewRecords.Name = "_DataGridViewRecords";
            _DataGridViewRecords.RowTemplate.Height = 24;
            _DataGridViewRecords.Size = new System.Drawing.Size(576, 183);
            _DataGridViewRecords.TabIndex = 0;
            // 
            // _ContextMenuStripRecords
            // 
            _ContextMenuStripRecords.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            _ToolStripMenuItemAddRecord,
            _ToolStripMenuItemRemoveRecord});
            _ContextMenuStripRecords.Name = "_ContextMenuStripRecords";
            _ContextMenuStripRecords.Size = new System.Drawing.Size(198, 52);
            // 
            // _ToolStripMenuItemAddRecord
            // 
            _ToolStripMenuItemAddRecord.Name = "_ToolStripMenuItemAddRecord";
            _ToolStripMenuItemAddRecord.Size = new System.Drawing.Size(197, 24);
            _ToolStripMenuItemAddRecord.Text = "Добавить запись";
            _ToolStripMenuItemAddRecord.Click += new System.EventHandler(EventHandler_ToolStripMenuItemAddRecord_Click);
            // 
            // _ToolStripMenuItemRemoveRecord
            // 
            _ToolStripMenuItemRemoveRecord.Name = "_ToolStripMenuItemRemoveRecord";
            _ToolStripMenuItemRemoveRecord.Size = new System.Drawing.Size(197, 24);
            _ToolStripMenuItemRemoveRecord.Text = "Удалить запись";
            _ToolStripMenuItemRemoveRecord.Click += new System.EventHandler(EventHandler_ToolStripMenuItemRemoveRecord_Click);
            // 
            // FormEditNetworkController
            // 
            AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
            AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            AutoSize = true;
            ClientSize = new System.Drawing.Size(880, 456);
            Controls.Add(_SplitContainerMain);
            Controls.Add(_StatusStripMain);
            Controls.Add(_MenuStripMain);
            MainMenuStrip = _MenuStripMain;
            MaximizeBox = false;
            MinimizeBox = false;
            Name = "FormEditNetworkController";
            ShowIcon = false;
            ShowInTaskbar = false;
            StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            Text = "Редактор сети Modbus";
            Load += new System.EventHandler(EventHandler_FormEditNetworkController_Load);
            FormClosed += new System.Windows.Forms.FormClosedEventHandler(EventHandler_FormEditNetworkController_FormClosed);
            FormClosing += new System.Windows.Forms.FormClosingEventHandler(EventHandler_FormEditNetworkController_FormClosing);
            _SplitContainerMain.Panel1.ResumeLayout(false);
            _SplitContainerMain.Panel2.ResumeLayout(false);
            _SplitContainerMain.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(_DataGridViewDevicesList)).EndInit();
            _ContextMenuStripDevicesList.ResumeLayout(false);
            _TabControlDevice.ResumeLayout(false);
            _TabPageHoldingRegisters.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(_DataGridViewHoldingRegisters)).EndInit();
            _ContextMenuStripHoldingRegisters.ResumeLayout(false);
            _TabPageInputRegisters.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(_DataGridViewInputRegisters)).EndInit();
            _ContextMenuStripInputRegisters.ResumeLayout(false);
            _TabPageCoils.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(_DataGridViewCoils)).EndInit();
            _ContextMenuStripCoils.ResumeLayout(false);
            _TabPageDiscretesInputs.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(_DataGridViewDiscretesInputs)).EndInit();
            _ContextMenuStripDiscretesInputs.ResumeLayout(false);
            _TabPageFiles.ResumeLayout(false);
            _SplitContainerFiles.Panel1.ResumeLayout(false);
            _SplitContainerFiles.Panel2.ResumeLayout(false);
            _SplitContainerFiles.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(_DataGridViewFiles)).EndInit();
            _ContextMenuStripFiles.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(_DataGridViewRecords)).EndInit();
            _ContextMenuStripRecords.ResumeLayout(false);
            ResumeLayout(false);
            PerformLayout();

        }
Esempio n. 35
0
 /// <summary>
 /// デザイナー サポートに必要なメソッドです。このメソッドの内容を
 /// コード エディターで変更しないでください。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.ContextMenuStrip          conOption;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Viewer));
     Comical.Controls.ToolStripRadioMenuItem        itmOriginalSize;
     this.itmFitToWindow = new Comical.Controls.ToolStripRadioMenuItem();
     this.preMain        = new Comical.Controls.Previewer();
     conOption           = new System.Windows.Forms.ContextMenuStrip(this.components);
     itmOriginalSize     = new Comical.Controls.ToolStripRadioMenuItem();
     conOption.SuspendLayout();
     this.SuspendLayout();
     //
     // conOption
     //
     conOption.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.itmFitToWindow,
         itmOriginalSize
     });
     conOption.Name = "conOption";
     resources.ApplyResources(conOption, "conOption");
     //
     // itmFitToWindow
     //
     this.itmFitToWindow.Checked      = true;
     this.itmFitToWindow.CheckOnClick = true;
     this.itmFitToWindow.CheckState   = System.Windows.Forms.CheckState.Checked;
     this.itmFitToWindow.Group        = 0;
     this.itmFitToWindow.Name         = "itmFitToWindow";
     resources.ApplyResources(this.itmFitToWindow, "itmFitToWindow");
     this.itmFitToWindow.CheckedChanged += new System.EventHandler(this.itmFitToWindow_CheckedChanged);
     //
     // itmOriginalSize
     //
     itmOriginalSize.CheckOnClick = true;
     itmOriginalSize.Group        = 0;
     itmOriginalSize.Name         = "itmOriginalSize";
     resources.ApplyResources(itmOriginalSize, "itmOriginalSize");
     itmOriginalSize.CheckedChanged += new System.EventHandler(this.itmFitToWindow_CheckedChanged);
     //
     // preMain
     //
     resources.ApplyResources(this.preMain, "preMain");
     this.preMain.BackColor   = System.Drawing.Color.Transparent;
     this.preMain.Description = null;
     this.preMain.Font        = System.Drawing.SystemFonts.MessageBoxFont;
     this.preMain.ForeColor   = System.Drawing.Color.White;
     this.preMain.Image       = null;
     this.preMain.Name        = "preMain";
     this.preMain.StretchMode = Comical.Controls.PreviewerStretchMode.Uniform;
     //
     // Viewer
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     resources.ApplyResources(this, "$this");
     this.BackColor        = System.Drawing.Color.Black;
     this.ContextMenuStrip = conOption;
     this.Controls.Add(this.preMain);
     this.DockAreas               = ((WeifenLuo.WinFormsUI.Docking.DockAreas)((WeifenLuo.WinFormsUI.Docking.DockAreas.Float | WeifenLuo.WinFormsUI.Docking.DockAreas.Document)));
     this.MinimizeBox             = false;
     this.Name                    = "Viewer";
     this.ShowHint                = WeifenLuo.WinFormsUI.Docking.DockState.Document;
     this.ShowInTaskbar           = false;
     this.TabPageContextMenuStrip = conOption;
     conOption.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Esempio n. 36
0
        /// <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.Windows.Forms.ContextMenuStrip ctxMenu;
            System.Windows.Forms.ToolStripMenuItem noneMenuItem;
            System.Windows.Forms.ToolStripSeparator sep1;
            System.Windows.Forms.ToolStripSeparator sep2;
            this.tabMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.returnMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.escMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.prtscMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.ctrlMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.altMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.winMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.shiftMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            ctxMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
            noneMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            sep1 = new System.Windows.Forms.ToolStripSeparator();
            sep2 = new System.Windows.Forms.ToolStripSeparator();
            ctxMenu.SuspendLayout();
            this.SuspendLayout();
            // 
            // ctxMenu
            // 
            ctxMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            noneMenuItem,
            sep1,
            this.tabMenuItem,
            this.returnMenuItem,
            this.escMenuItem,
            this.prtscMenuItem,
            sep2,
            this.ctrlMenuItem,
            this.altMenuItem,
            this.winMenuItem,
            this.shiftMenuItem});
            ctxMenu.Name = "ctxMenu";
            ctxMenu.Size = new System.Drawing.Size(111, 214);
            // 
            // noneMenuItem
            // 
            noneMenuItem.Name = "noneMenuItem";
            noneMenuItem.Size = new System.Drawing.Size(110, 22);
            noneMenuItem.Text = "None";
            noneMenuItem.Click += new System.EventHandler(this.noneMenuItem_Click);
            // 
            // sep1
            // 
            sep1.Name = "sep1";
            sep1.Size = new System.Drawing.Size(107, 6);
            // 
            // tabMenuItem
            // 
            this.tabMenuItem.Name = "tabMenuItem";
            this.tabMenuItem.Size = new System.Drawing.Size(110, 22);
            this.tabMenuItem.Click += new System.EventHandler(this.tabMenuItem_Click);
            // 
            // returnMenuItem
            // 
            this.returnMenuItem.Name = "returnMenuItem";
            this.returnMenuItem.Size = new System.Drawing.Size(110, 22);
            this.returnMenuItem.Click += new System.EventHandler(this.returnMenuItem_Click);
            // 
            // escMenuItem
            // 
            this.escMenuItem.Name = "escMenuItem";
            this.escMenuItem.Size = new System.Drawing.Size(110, 22);
            this.escMenuItem.Click += new System.EventHandler(this.escMenuItem_Click);
            // 
            // prtscMenuItem
            // 
            this.prtscMenuItem.Name = "prtscMenuItem";
            this.prtscMenuItem.Size = new System.Drawing.Size(110, 22);
            this.prtscMenuItem.Click += new System.EventHandler(this.prtscMenuItem_Click);
            // 
            // sep2
            // 
            sep2.Name = "sep2";
            sep2.Size = new System.Drawing.Size(107, 6);
            // 
            // ctrlMenuItem
            // 
            this.ctrlMenuItem.Name = "ctrlMenuItem";
            this.ctrlMenuItem.Size = new System.Drawing.Size(110, 22);
            this.ctrlMenuItem.Click += new System.EventHandler(this.ctrlMenuItem_Click);
            // 
            // altMenuItem
            // 
            this.altMenuItem.Name = "altMenuItem";
            this.altMenuItem.Size = new System.Drawing.Size(110, 22);
            this.altMenuItem.Click += new System.EventHandler(this.altMenuItem_Click);
            // 
            // winMenuItem
            // 
            this.winMenuItem.Name = "winMenuItem";
            this.winMenuItem.Size = new System.Drawing.Size(110, 22);
            this.winMenuItem.Click += new System.EventHandler(this.winMenuItem_Click);
            // 
            // shiftMenuItem
            // 
            this.shiftMenuItem.Name = "shiftMenuItem";
            this.shiftMenuItem.Size = new System.Drawing.Size(110, 22);
            this.shiftMenuItem.Click += new System.EventHandler(this.shiftMenuItem_Click);
            // 
            // ShortcutBox
            // 
            this.ContextMenuStrip = ctxMenu;
            this.KeyUp += new System.Windows.Forms.KeyEventHandler(this.ShortcutBox_KeyUp);
            this.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.ShortcutBox_KeyPress);
            this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ShortcutBox_KeyDown);
            ctxMenu.ResumeLayout(false);
            this.ResumeLayout(false);

        }
Esempio n. 37
0
		/// <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.Windows.Forms.TabControl m_tabs;
            System.Windows.Forms.TabPage calculatorTab;
            System.Windows.Forms.TabPage symbolsTab;
            System.Windows.Forms.TableLayoutPanel tableLayoutPanel2;
            System.Windows.Forms.ContextMenuStrip m_currenciesContextMenu;
            System.Windows.Forms.ToolStripMenuItem addToolStripMenuItem4;
            System.Windows.Forms.ToolStripMenuItem removeToolStripMenuItem4;
            System.Windows.Forms.ToolStripMenuItem addMajorCurrenciesToolStripMenuItem;
            System.Windows.Forms.ToolStripMenuItem moveUpToolStripMenuItem;
            System.Windows.Forms.ToolStripMenuItem moveDownToolStripMenuItem;
            System.Windows.Forms.TabPage accountsAndTradesTab;
            System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
            System.Windows.Forms.MenuStrip mainMenu;
            System.Windows.Forms.ToolStripMenuItem openToolStripMenuItem;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
            System.Windows.Forms.ToolStripMenuItem saveToolStripMenuItem;
            System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem;
            System.Windows.Forms.ToolStripMenuItem serverToolStripMenuItem;
            System.Windows.Forms.ToolStripMenuItem getSymbolsAndQuotesToolStripMenuItem;
            System.Windows.Forms.Label label1;
            this.m_calculatorTabPropertyGrid = new System.Windows.Forms.PropertyGrid();
            this.m_symbols = new System.Windows.Forms.ListBox();
            this.m_symbolsContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.addToolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
            this.removeToolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
            this.m_symbolsTabPropertyGrid = new System.Windows.Forms.PropertyGrid();
            this.currenciesTab = new System.Windows.Forms.TabPage();
            this.m_currencies = new System.Windows.Forms.ListBox();
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.quotesTab = new System.Windows.Forms.TabPage();
            this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
            this.m_quotes = new System.Windows.Forms.ListBox();
            this.m_quotesContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.addToolStripMenuItem3 = new System.Windows.Forms.ToolStripMenuItem();
            this.removeToolStripMenuItem3 = new System.Windows.Forms.ToolStripMenuItem();
            this.m_quotesTabPropertyGrid = new System.Windows.Forms.PropertyGrid();
            this.m_accounts = new System.Windows.Forms.ListBox();
            this.m_acccountsContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.addToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.removeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.m_trades = new System.Windows.Forms.ListBox();
            this.m_tradesContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.addToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
            this.removeToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
            this.m_accountsTabPropertyGrid = new System.Windows.Forms.PropertyGrid();
            this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.m_calculate = new System.Windows.Forms.Button();
            this.m_clear = new System.Windows.Forms.Button();
            this.m_openFileDialog = new System.Windows.Forms.OpenFileDialog();
            this.m_saveFileDialog = new System.Windows.Forms.SaveFileDialog();
            this.m_calculationTime = new System.Windows.Forms.TextBox();
            m_tabs = new System.Windows.Forms.TabControl();
            calculatorTab = new System.Windows.Forms.TabPage();
            symbolsTab = new System.Windows.Forms.TabPage();
            tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
            m_currenciesContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
            addToolStripMenuItem4 = new System.Windows.Forms.ToolStripMenuItem();
            removeToolStripMenuItem4 = new System.Windows.Forms.ToolStripMenuItem();
            addMajorCurrenciesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            moveUpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            moveDownToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            accountsAndTradesTab = new System.Windows.Forms.TabPage();
            tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
            mainMenu = new System.Windows.Forms.MenuStrip();
            openToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            saveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            serverToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            getSymbolsAndQuotesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            label1 = new System.Windows.Forms.Label();
            m_tabs.SuspendLayout();
            calculatorTab.SuspendLayout();
            symbolsTab.SuspendLayout();
            tableLayoutPanel2.SuspendLayout();
            this.m_symbolsContextMenu.SuspendLayout();
            this.currenciesTab.SuspendLayout();
            m_currenciesContextMenu.SuspendLayout();
            this.quotesTab.SuspendLayout();
            this.tableLayoutPanel3.SuspendLayout();
            this.m_quotesContextMenu.SuspendLayout();
            accountsAndTradesTab.SuspendLayout();
            tableLayoutPanel1.SuspendLayout();
            this.m_acccountsContextMenu.SuspendLayout();
            this.m_tradesContextMenu.SuspendLayout();
            mainMenu.SuspendLayout();
            this.SuspendLayout();
            // 
            // m_tabs
            // 
            m_tabs.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)));
            m_tabs.Controls.Add(calculatorTab);
            m_tabs.Controls.Add(symbolsTab);
            m_tabs.Controls.Add(this.currenciesTab);
            m_tabs.Controls.Add(this.quotesTab);
            m_tabs.Controls.Add(accountsAndTradesTab);
            m_tabs.Location = new System.Drawing.Point(0, 25);
            m_tabs.Name = "m_tabs";
            m_tabs.SelectedIndex = 0;
            m_tabs.Size = new System.Drawing.Size(784, 377);
            m_tabs.TabIndex = 0;
            // 
            // calculatorTab
            // 
            calculatorTab.Controls.Add(this.m_calculatorTabPropertyGrid);
            calculatorTab.Location = new System.Drawing.Point(4, 22);
            calculatorTab.Name = "calculatorTab";
            calculatorTab.Padding = new System.Windows.Forms.Padding(3);
            calculatorTab.Size = new System.Drawing.Size(776, 351);
            calculatorTab.TabIndex = 0;
            calculatorTab.Text = "Calculator";
            calculatorTab.UseVisualStyleBackColor = true;
            // 
            // m_calculatorTabPropertyGrid
            // 
            this.m_calculatorTabPropertyGrid.Dock = System.Windows.Forms.DockStyle.Fill;
            this.m_calculatorTabPropertyGrid.Location = new System.Drawing.Point(3, 3);
            this.m_calculatorTabPropertyGrid.Name = "m_calculatorTabPropertyGrid";
            this.m_calculatorTabPropertyGrid.Size = new System.Drawing.Size(770, 345);
            this.m_calculatorTabPropertyGrid.TabIndex = 0;
            // 
            // symbolsTab
            // 
            symbolsTab.Controls.Add(tableLayoutPanel2);
            symbolsTab.Location = new System.Drawing.Point(4, 22);
            symbolsTab.Name = "symbolsTab";
            symbolsTab.Padding = new System.Windows.Forms.Padding(3);
            symbolsTab.Size = new System.Drawing.Size(776, 351);
            symbolsTab.TabIndex = 1;
            symbolsTab.Text = "Symbols";
            symbolsTab.UseVisualStyleBackColor = true;
            // 
            // tableLayoutPanel2
            // 
            tableLayoutPanel2.ColumnCount = 2;
            tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
            tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
            tableLayoutPanel2.Controls.Add(this.m_symbols, 0, 0);
            tableLayoutPanel2.Controls.Add(this.m_symbolsTabPropertyGrid, 1, 0);
            tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
            tableLayoutPanel2.Location = new System.Drawing.Point(3, 3);
            tableLayoutPanel2.Name = "tableLayoutPanel2";
            tableLayoutPanel2.RowCount = 1;
            tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
            tableLayoutPanel2.Size = new System.Drawing.Size(770, 345);
            tableLayoutPanel2.TabIndex = 0;
            // 
            // m_symbols
            // 
            this.m_symbols.ContextMenuStrip = this.m_symbolsContextMenu;
            this.m_symbols.Dock = System.Windows.Forms.DockStyle.Fill;
            this.m_symbols.FormattingEnabled = true;
            this.m_symbols.Location = new System.Drawing.Point(3, 3);
            this.m_symbols.Name = "m_symbols";
            this.m_symbols.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
            this.m_symbols.Size = new System.Drawing.Size(379, 339);
            this.m_symbols.TabIndex = 0;
            this.m_symbols.SelectedIndexChanged += new System.EventHandler(this.OnSelectedSymbolsChanged);
            // 
            // m_symbolsContextMenu
            // 
            this.m_symbolsContextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.addToolStripMenuItem2,
            this.removeToolStripMenuItem2});
            this.m_symbolsContextMenu.Name = "m_symbolsContextMenu";
            this.m_symbolsContextMenu.Size = new System.Drawing.Size(118, 48);
            // 
            // addToolStripMenuItem2
            // 
            this.addToolStripMenuItem2.Name = "addToolStripMenuItem2";
            this.addToolStripMenuItem2.Size = new System.Drawing.Size(117, 22);
            this.addToolStripMenuItem2.Text = "Add";
            this.addToolStripMenuItem2.Click += new System.EventHandler(this.OnAddSymbol);
            // 
            // removeToolStripMenuItem2
            // 
            this.removeToolStripMenuItem2.Name = "removeToolStripMenuItem2";
            this.removeToolStripMenuItem2.Size = new System.Drawing.Size(117, 22);
            this.removeToolStripMenuItem2.Text = "Remove";
            this.removeToolStripMenuItem2.Click += new System.EventHandler(this.OnRemoveSymbol);
            // 
            // m_symbolsTabPropertyGrid
            // 
            this.m_symbolsTabPropertyGrid.Dock = System.Windows.Forms.DockStyle.Fill;
            this.m_symbolsTabPropertyGrid.Location = new System.Drawing.Point(388, 3);
            this.m_symbolsTabPropertyGrid.Name = "m_symbolsTabPropertyGrid";
            this.m_symbolsTabPropertyGrid.Size = new System.Drawing.Size(379, 339);
            this.m_symbolsTabPropertyGrid.TabIndex = 1;
            // 
            // currenciesTab
            // 
            this.currenciesTab.Controls.Add(this.m_currencies);
            this.currenciesTab.Location = new System.Drawing.Point(4, 22);
            this.currenciesTab.Name = "currenciesTab";
            this.currenciesTab.Padding = new System.Windows.Forms.Padding(3);
            this.currenciesTab.Size = new System.Drawing.Size(776, 351);
            this.currenciesTab.TabIndex = 4;
            this.currenciesTab.Text = "Currencies";
            this.currenciesTab.UseVisualStyleBackColor = true;
            // 
            // m_currencies
            // 
            this.m_currencies.ContextMenuStrip = m_currenciesContextMenu;
            this.m_currencies.Dock = System.Windows.Forms.DockStyle.Fill;
            this.m_currencies.FormattingEnabled = true;
            this.m_currencies.Location = new System.Drawing.Point(3, 3);
            this.m_currencies.Name = "m_currencies";
            this.m_currencies.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
            this.m_currencies.Size = new System.Drawing.Size(770, 345);
            this.m_currencies.TabIndex = 0;
            // 
            // m_currenciesContextMenu
            // 
            m_currenciesContextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            addToolStripMenuItem4,
            removeToolStripMenuItem4,
            addMajorCurrenciesToolStripMenuItem,
            this.toolStripSeparator1,
            moveUpToolStripMenuItem,
            moveDownToolStripMenuItem});
            m_currenciesContextMenu.Name = "m_currenciesContextMenu";
            m_currenciesContextMenu.Size = new System.Drawing.Size(190, 120);
            // 
            // addToolStripMenuItem4
            // 
            addToolStripMenuItem4.Name = "addToolStripMenuItem4";
            addToolStripMenuItem4.Size = new System.Drawing.Size(189, 22);
            addToolStripMenuItem4.Text = "Add";
            addToolStripMenuItem4.Click += new System.EventHandler(this.OnAddCurrency);
            // 
            // removeToolStripMenuItem4
            // 
            removeToolStripMenuItem4.Name = "removeToolStripMenuItem4";
            removeToolStripMenuItem4.Size = new System.Drawing.Size(189, 22);
            removeToolStripMenuItem4.Text = "Remove";
            removeToolStripMenuItem4.Click += new System.EventHandler(this.OnRemoveCurrency);
            // 
            // addMajorCurrenciesToolStripMenuItem
            // 
            addMajorCurrenciesToolStripMenuItem.Name = "addMajorCurrenciesToolStripMenuItem";
            addMajorCurrenciesToolStripMenuItem.Size = new System.Drawing.Size(189, 22);
            addMajorCurrenciesToolStripMenuItem.Text = "Add Major Currencies";
            addMajorCurrenciesToolStripMenuItem.Click += new System.EventHandler(this.OnAddMajorCurrencies);
            // 
            // toolStripSeparator1
            // 
            this.toolStripSeparator1.Name = "toolStripSeparator1";
            this.toolStripSeparator1.Size = new System.Drawing.Size(186, 6);
            // 
            // moveUpToolStripMenuItem
            // 
            moveUpToolStripMenuItem.Name = "moveUpToolStripMenuItem";
            moveUpToolStripMenuItem.Size = new System.Drawing.Size(189, 22);
            moveUpToolStripMenuItem.Text = "Move Up";
            moveUpToolStripMenuItem.Click += new System.EventHandler(this.OnMoveUpCurrency);
            // 
            // moveDownToolStripMenuItem
            // 
            moveDownToolStripMenuItem.Name = "moveDownToolStripMenuItem";
            moveDownToolStripMenuItem.Size = new System.Drawing.Size(189, 22);
            moveDownToolStripMenuItem.Text = "Move Down";
            moveDownToolStripMenuItem.Click += new System.EventHandler(this.OnMoveDownCurrency);
            // 
            // quotesTab
            // 
            this.quotesTab.Controls.Add(this.tableLayoutPanel3);
            this.quotesTab.Location = new System.Drawing.Point(4, 22);
            this.quotesTab.Name = "quotesTab";
            this.quotesTab.Padding = new System.Windows.Forms.Padding(3);
            this.quotesTab.Size = new System.Drawing.Size(776, 351);
            this.quotesTab.TabIndex = 2;
            this.quotesTab.Text = "Quotes";
            this.quotesTab.UseVisualStyleBackColor = true;
            // 
            // tableLayoutPanel3
            // 
            this.tableLayoutPanel3.ColumnCount = 2;
            this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
            this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
            this.tableLayoutPanel3.Controls.Add(this.m_quotes, 0, 0);
            this.tableLayoutPanel3.Controls.Add(this.m_quotesTabPropertyGrid, 1, 0);
            this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tableLayoutPanel3.Location = new System.Drawing.Point(3, 3);
            this.tableLayoutPanel3.Name = "tableLayoutPanel3";
            this.tableLayoutPanel3.RowCount = 1;
            this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
            this.tableLayoutPanel3.Size = new System.Drawing.Size(770, 345);
            this.tableLayoutPanel3.TabIndex = 0;
            // 
            // m_quotes
            // 
            this.m_quotes.ContextMenuStrip = this.m_quotesContextMenu;
            this.m_quotes.Dock = System.Windows.Forms.DockStyle.Fill;
            this.m_quotes.FormattingEnabled = true;
            this.m_quotes.Location = new System.Drawing.Point(3, 3);
            this.m_quotes.Name = "m_quotes";
            this.m_quotes.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
            this.m_quotes.Size = new System.Drawing.Size(379, 339);
            this.m_quotes.Sorted = true;
            this.m_quotes.TabIndex = 0;
            this.m_quotes.SelectedIndexChanged += new System.EventHandler(this.OnSelectedQuotesChanged);
            // 
            // m_quotesContextMenu
            // 
            this.m_quotesContextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.addToolStripMenuItem3,
            this.removeToolStripMenuItem3});
            this.m_quotesContextMenu.Name = "m_quotesContextMenu";
            this.m_quotesContextMenu.Size = new System.Drawing.Size(118, 48);
            // 
            // addToolStripMenuItem3
            // 
            this.addToolStripMenuItem3.Name = "addToolStripMenuItem3";
            this.addToolStripMenuItem3.Size = new System.Drawing.Size(117, 22);
            this.addToolStripMenuItem3.Text = "Add";
            this.addToolStripMenuItem3.Click += new System.EventHandler(this.OnAddQuote);
            // 
            // removeToolStripMenuItem3
            // 
            this.removeToolStripMenuItem3.Name = "removeToolStripMenuItem3";
            this.removeToolStripMenuItem3.Size = new System.Drawing.Size(117, 22);
            this.removeToolStripMenuItem3.Text = "Remove";
            this.removeToolStripMenuItem3.Click += new System.EventHandler(this.OnRemoveQuote);
            // 
            // m_quotesTabPropertyGrid
            // 
            this.m_quotesTabPropertyGrid.Dock = System.Windows.Forms.DockStyle.Fill;
            this.m_quotesTabPropertyGrid.Location = new System.Drawing.Point(388, 3);
            this.m_quotesTabPropertyGrid.Name = "m_quotesTabPropertyGrid";
            this.m_quotesTabPropertyGrid.Size = new System.Drawing.Size(379, 339);
            this.m_quotesTabPropertyGrid.TabIndex = 1;
            // 
            // accountsAndTradesTab
            // 
            accountsAndTradesTab.Controls.Add(tableLayoutPanel1);
            accountsAndTradesTab.Location = new System.Drawing.Point(4, 22);
            accountsAndTradesTab.Name = "accountsAndTradesTab";
            accountsAndTradesTab.Padding = new System.Windows.Forms.Padding(3);
            accountsAndTradesTab.Size = new System.Drawing.Size(776, 351);
            accountsAndTradesTab.TabIndex = 3;
            accountsAndTradesTab.Text = "Accounts & Trades";
            accountsAndTradesTab.UseVisualStyleBackColor = true;
            // 
            // tableLayoutPanel1
            // 
            tableLayoutPanel1.ColumnCount = 3;
            tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33F));
            tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33F));
            tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 34F));
            tableLayoutPanel1.Controls.Add(this.m_accounts, 0, 0);
            tableLayoutPanel1.Controls.Add(this.m_trades, 1, 0);
            tableLayoutPanel1.Controls.Add(this.m_accountsTabPropertyGrid, 2, 0);
            tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
            tableLayoutPanel1.Location = new System.Drawing.Point(3, 3);
            tableLayoutPanel1.Name = "tableLayoutPanel1";
            tableLayoutPanel1.RowCount = 1;
            tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
            tableLayoutPanel1.Size = new System.Drawing.Size(770, 345);
            tableLayoutPanel1.TabIndex = 0;
            // 
            // m_accounts
            // 
            this.m_accounts.ContextMenuStrip = this.m_acccountsContextMenu;
            this.m_accounts.Dock = System.Windows.Forms.DockStyle.Fill;
            this.m_accounts.FormattingEnabled = true;
            this.m_accounts.Location = new System.Drawing.Point(3, 3);
            this.m_accounts.Name = "m_accounts";
            this.m_accounts.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
            this.m_accounts.Size = new System.Drawing.Size(248, 339);
            this.m_accounts.TabIndex = 0;
            this.m_accounts.SelectedIndexChanged += new System.EventHandler(this.OnSelectedAccountsChanged);
            // 
            // m_acccountsContextMenu
            // 
            this.m_acccountsContextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.addToolStripMenuItem,
            this.removeToolStripMenuItem});
            this.m_acccountsContextMenu.Name = "m_acccountsContextMenu";
            this.m_acccountsContextMenu.Size = new System.Drawing.Size(118, 48);
            // 
            // addToolStripMenuItem
            // 
            this.addToolStripMenuItem.Name = "addToolStripMenuItem";
            this.addToolStripMenuItem.Size = new System.Drawing.Size(117, 22);
            this.addToolStripMenuItem.Text = "Add";
            this.addToolStripMenuItem.Click += new System.EventHandler(this.OnAddAccount);
            // 
            // removeToolStripMenuItem
            // 
            this.removeToolStripMenuItem.Name = "removeToolStripMenuItem";
            this.removeToolStripMenuItem.Size = new System.Drawing.Size(117, 22);
            this.removeToolStripMenuItem.Text = "Remove";
            this.removeToolStripMenuItem.Click += new System.EventHandler(this.OnRemoveAccount);
            // 
            // m_trades
            // 
            this.m_trades.ContextMenuStrip = this.m_tradesContextMenu;
            this.m_trades.Dock = System.Windows.Forms.DockStyle.Fill;
            this.m_trades.FormattingEnabled = true;
            this.m_trades.Location = new System.Drawing.Point(257, 3);
            this.m_trades.Name = "m_trades";
            this.m_trades.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
            this.m_trades.Size = new System.Drawing.Size(248, 339);
            this.m_trades.TabIndex = 1;
            this.m_trades.SelectedIndexChanged += new System.EventHandler(this.OnSelectedTradesChanged);
            // 
            // m_tradesContextMenu
            // 
            this.m_tradesContextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.addToolStripMenuItem1,
            this.removeToolStripMenuItem1});
            this.m_tradesContextMenu.Name = "m_tradesContextMenu";
            this.m_tradesContextMenu.Size = new System.Drawing.Size(118, 48);
            // 
            // addToolStripMenuItem1
            // 
            this.addToolStripMenuItem1.Name = "addToolStripMenuItem1";
            this.addToolStripMenuItem1.Size = new System.Drawing.Size(117, 22);
            this.addToolStripMenuItem1.Text = "Add";
            this.addToolStripMenuItem1.Click += new System.EventHandler(this.OnAddTrade);
            // 
            // removeToolStripMenuItem1
            // 
            this.removeToolStripMenuItem1.Name = "removeToolStripMenuItem1";
            this.removeToolStripMenuItem1.Size = new System.Drawing.Size(117, 22);
            this.removeToolStripMenuItem1.Text = "Remove";
            this.removeToolStripMenuItem1.Click += new System.EventHandler(this.OnRemoveTrade);
            // 
            // m_accountsTabPropertyGrid
            // 
            this.m_accountsTabPropertyGrid.Dock = System.Windows.Forms.DockStyle.Fill;
            this.m_accountsTabPropertyGrid.Location = new System.Drawing.Point(511, 3);
            this.m_accountsTabPropertyGrid.Name = "m_accountsTabPropertyGrid";
            this.m_accountsTabPropertyGrid.Size = new System.Drawing.Size(256, 339);
            this.m_accountsTabPropertyGrid.TabIndex = 2;
            // 
            // mainMenu
            // 
            mainMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.fileToolStripMenuItem,
            serverToolStripMenuItem});
            mainMenu.Location = new System.Drawing.Point(0, 0);
            mainMenu.Name = "mainMenu";
            mainMenu.Size = new System.Drawing.Size(784, 24);
            mainMenu.TabIndex = 4;
            // 
            // fileToolStripMenuItem
            // 
            this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            openToolStripMenuItem,
            saveToolStripMenuItem,
            exitToolStripMenuItem});
            this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
            this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
            this.fileToolStripMenuItem.Text = "&File";
            // 
            // openToolStripMenuItem
            // 
            openToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("openToolStripMenuItem.Image")));
            openToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
            openToolStripMenuItem.Name = "openToolStripMenuItem";
            openToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O)));
            openToolStripMenuItem.Size = new System.Drawing.Size(146, 22);
            openToolStripMenuItem.Text = "&Open";
            openToolStripMenuItem.Click += new System.EventHandler(this.OnOpen);
            // 
            // saveToolStripMenuItem
            // 
            saveToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("saveToolStripMenuItem.Image")));
            saveToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
            saveToolStripMenuItem.Name = "saveToolStripMenuItem";
            saveToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
            saveToolStripMenuItem.Size = new System.Drawing.Size(146, 22);
            saveToolStripMenuItem.Text = "&Save";
            saveToolStripMenuItem.Click += new System.EventHandler(this.OnSave);
            // 
            // exitToolStripMenuItem
            // 
            exitToolStripMenuItem.Name = "exitToolStripMenuItem";
            exitToolStripMenuItem.Size = new System.Drawing.Size(146, 22);
            exitToolStripMenuItem.Text = "E&xit";
            exitToolStripMenuItem.Click += new System.EventHandler(this.OnExit);
            // 
            // serverToolStripMenuItem
            // 
            serverToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            getSymbolsAndQuotesToolStripMenuItem});
            serverToolStripMenuItem.Name = "serverToolStripMenuItem";
            serverToolStripMenuItem.Size = new System.Drawing.Size(51, 20);
            serverToolStripMenuItem.Text = "Server";
            // 
            // getSymbolsAndQuotesToolStripMenuItem
            // 
            getSymbolsAndQuotesToolStripMenuItem.Name = "getSymbolsAndQuotesToolStripMenuItem";
            getSymbolsAndQuotesToolStripMenuItem.Size = new System.Drawing.Size(204, 22);
            getSymbolsAndQuotesToolStripMenuItem.Text = "Get Symbols and Quotes";
            getSymbolsAndQuotesToolStripMenuItem.Click += new System.EventHandler(this.OnGetSymbolsAndQuotes);
            // 
            // label1
            // 
            label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            label1.AutoSize = true;
            label1.Location = new System.Drawing.Point(234, 423);
            label1.Name = "label1";
            label1.Size = new System.Drawing.Size(84, 13);
            label1.TabIndex = 5;
            label1.Text = "Calculation time:";
            // 
            // m_calculate
            // 
            this.m_calculate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.m_calculate.Location = new System.Drawing.Point(24, 418);
            this.m_calculate.Name = "m_calculate";
            this.m_calculate.Size = new System.Drawing.Size(75, 23);
            this.m_calculate.TabIndex = 2;
            this.m_calculate.Text = "Calculate";
            this.m_calculate.UseVisualStyleBackColor = true;
            this.m_calculate.Click += new System.EventHandler(this.OnCalculate);
            // 
            // m_clear
            // 
            this.m_clear.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.m_clear.Location = new System.Drawing.Point(129, 418);
            this.m_clear.Name = "m_clear";
            this.m_clear.Size = new System.Drawing.Size(75, 23);
            this.m_clear.TabIndex = 3;
            this.m_clear.Text = "Clear";
            this.m_clear.UseVisualStyleBackColor = true;
            this.m_clear.Click += new System.EventHandler(this.OnClear);
            // 
            // m_openFileDialog
            // 
            this.m_openFileDialog.Filter = "TXT files|*.txt|All files|*.*";
            // 
            // m_saveFileDialog
            // 
            this.m_saveFileDialog.Filter = "TXT files|*.txt|All files|*.*";
            // 
            // m_calculationTime
            // 
            this.m_calculationTime.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.m_calculationTime.Location = new System.Drawing.Point(340, 421);
            this.m_calculationTime.Name = "m_calculationTime";
            this.m_calculationTime.ReadOnly = true;
            this.m_calculationTime.Size = new System.Drawing.Size(100, 20);
            this.m_calculationTime.TabIndex = 6;
            // 
            // MainForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(784, 461);
            this.Controls.Add(this.m_calculationTime);
            this.Controls.Add(label1);
            this.Controls.Add(mainMenu);
            this.Controls.Add(this.m_clear);
            this.Controls.Add(this.m_calculate);
            this.Controls.Add(m_tabs);
            this.MainMenuStrip = mainMenu;
            this.MinimumSize = new System.Drawing.Size(800, 200);
            this.Name = "MainForm";
            this.Text = "Financial Example";
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.OnFormClosing);
            m_tabs.ResumeLayout(false);
            calculatorTab.ResumeLayout(false);
            symbolsTab.ResumeLayout(false);
            tableLayoutPanel2.ResumeLayout(false);
            this.m_symbolsContextMenu.ResumeLayout(false);
            this.currenciesTab.ResumeLayout(false);
            m_currenciesContextMenu.ResumeLayout(false);
            this.quotesTab.ResumeLayout(false);
            this.tableLayoutPanel3.ResumeLayout(false);
            this.m_quotesContextMenu.ResumeLayout(false);
            accountsAndTradesTab.ResumeLayout(false);
            tableLayoutPanel1.ResumeLayout(false);
            this.m_acccountsContextMenu.ResumeLayout(false);
            this.m_tradesContextMenu.ResumeLayout(false);
            mainMenu.ResumeLayout(false);
            mainMenu.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

		}
 /// <summary>
 /// Erforderliche Methode für die Designerunterstützung.
 /// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.ContextMenuStrip          cmsMain;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMain));
     this.desktopverknüpfungErstellenToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1            = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripMenuItem1             = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem2             = new System.Windows.Forms.ToolStripMenuItem();
     this.listToolgruppen                = new System.Windows.Forms.ListBox();
     this.menuStrip1                     = new System.Windows.Forms.MenuStrip();
     this.neuToolStripMenuItem           = new System.Windows.Forms.ToolStripMenuItem();
     this.bearbeiToolStripMenuItem       = new System.Windows.Forms.ToolStripMenuItem();
     this.löschenToolStripMenuItem       = new System.Windows.Forms.ToolStripMenuItem();
     this.einstellungenToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.beendenToolStripMenuItem       = new System.Windows.Forms.ToolStripMenuItem();
     this.lbToolgruppen                  = new System.Windows.Forms.Label();
     this.llbWolf066LP                   = new System.Windows.Forms.LinkLabel();
     this.toolTip1    = new System.Windows.Forms.ToolTip(this.components);
     this.lbCopyRight = new System.Windows.Forms.Label();
     cmsMain          = new System.Windows.Forms.ContextMenuStrip(this.components);
     cmsMain.SuspendLayout();
     this.menuStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // cmsMain
     //
     cmsMain.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.desktopverknüpfungErstellenToolStripMenuItem,
         this.toolStripSeparator1,
         this.toolStripMenuItem1,
         this.toolStripMenuItem2
     });
     cmsMain.Name = "cmsMain";
     cmsMain.Size = new System.Drawing.Size(233, 76);
     //
     // desktopverknüpfungErstellenToolStripMenuItem
     //
     this.desktopverknüpfungErstellenToolStripMenuItem.Name   = "desktopverknüpfungErstellenToolStripMenuItem";
     this.desktopverknüpfungErstellenToolStripMenuItem.Size   = new System.Drawing.Size(232, 22);
     this.desktopverknüpfungErstellenToolStripMenuItem.Text   = "Desktopverknüpfung erstellen";
     this.desktopverknüpfungErstellenToolStripMenuItem.Click += new System.EventHandler(this.desktopverknüpfungErstellenToolStripMenuItem_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(229, 6);
     //
     // toolStripMenuItem1
     //
     this.toolStripMenuItem1.Name   = "toolStripMenuItem1";
     this.toolStripMenuItem1.Size   = new System.Drawing.Size(232, 22);
     this.toolStripMenuItem1.Text   = "Als Autpstartgruppe festelgen";
     this.toolStripMenuItem1.Click += new System.EventHandler(this.toolStripMenuItem1_Click);
     //
     // toolStripMenuItem2
     //
     this.toolStripMenuItem2.Name   = "toolStripMenuItem2";
     this.toolStripMenuItem2.Size   = new System.Drawing.Size(232, 22);
     this.toolStripMenuItem2.Text   = "Autpstartgruppe entfernen";
     this.toolStripMenuItem2.Click += new System.EventHandler(this.toolStripMenuItem2_Click);
     //
     // listToolgruppen
     //
     this.listToolgruppen.ContextMenuStrip  = cmsMain;
     this.listToolgruppen.FormattingEnabled = true;
     this.listToolgruppen.Location          = new System.Drawing.Point(14, 47);
     this.listToolgruppen.Name              = "listToolgruppen";
     this.listToolgruppen.Size              = new System.Drawing.Size(342, 199);
     this.listToolgruppen.TabIndex          = 1;
     this.listToolgruppen.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.listToolgruppen_MouseDoubleClick);
     //
     // menuStrip1
     //
     this.menuStrip1.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.neuToolStripMenuItem,
         this.bearbeiToolStripMenuItem,
         this.löschenToolStripMenuItem,
         this.einstellungenToolStripMenuItem,
         this.beendenToolStripMenuItem
     });
     this.menuStrip1.Location         = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name             = "menuStrip1";
     this.menuStrip1.ShowItemToolTips = true;
     this.menuStrip1.Size             = new System.Drawing.Size(369, 24);
     this.menuStrip1.TabIndex         = 2;
     this.menuStrip1.Text             = "menuStrip1";
     //
     // neuToolStripMenuItem
     //
     this.neuToolStripMenuItem.Name        = "neuToolStripMenuItem";
     this.neuToolStripMenuItem.Size        = new System.Drawing.Size(50, 20);
     this.neuToolStripMenuItem.Text        = "Neu...";
     this.neuToolStripMenuItem.ToolTipText = "Neue Toolgruppe erstellen (Strg + N)";
     this.neuToolStripMenuItem.Click      += new System.EventHandler(this.neuToolStripMenuItem_Click);
     //
     // bearbeiToolStripMenuItem
     //
     this.bearbeiToolStripMenuItem.Name        = "bearbeiToolStripMenuItem";
     this.bearbeiToolStripMenuItem.Size        = new System.Drawing.Size(84, 20);
     this.bearbeiToolStripMenuItem.Text        = "Bearbeiten...";
     this.bearbeiToolStripMenuItem.ToolTipText = "Toolgruppe bearbeiten (Strg + B)";
     this.bearbeiToolStripMenuItem.Click      += new System.EventHandler(this.bearbeiToolStripMenuItem_Click);
     //
     // löschenToolStripMenuItem
     //
     this.löschenToolStripMenuItem.Name        = "löschenToolStripMenuItem";
     this.löschenToolStripMenuItem.Size        = new System.Drawing.Size(63, 20);
     this.löschenToolStripMenuItem.Text        = "Löschen";
     this.löschenToolStripMenuItem.ToolTipText = "Toolgruppe löschen (Entf)";
     this.löschenToolStripMenuItem.Click      += new System.EventHandler(this.löschenToolStripMenuItem_Click);
     //
     // einstellungenToolStripMenuItem
     //
     this.einstellungenToolStripMenuItem.Name        = "einstellungenToolStripMenuItem";
     this.einstellungenToolStripMenuItem.Size        = new System.Drawing.Size(99, 20);
     this.einstellungenToolStripMenuItem.Text        = "Einstellungen...";
     this.einstellungenToolStripMenuItem.ToolTipText = "Einstellungen";
     this.einstellungenToolStripMenuItem.Click      += new System.EventHandler(this.einstellungenToolStripMenuItem_Click);
     this.einstellungenToolStripMenuItem.MouseDown  += new System.Windows.Forms.MouseEventHandler(this.einstellungenToolStripMenuItem_MouseDown);
     //
     // beendenToolStripMenuItem
     //
     this.beendenToolStripMenuItem.Name        = "beendenToolStripMenuItem";
     this.beendenToolStripMenuItem.Size        = new System.Drawing.Size(65, 20);
     this.beendenToolStripMenuItem.Text        = "Beenden";
     this.beendenToolStripMenuItem.ToolTipText = "Beenden";
     this.beendenToolStripMenuItem.Click      += new System.EventHandler(this.beendenToolStripMenuItem_Click);
     //
     // lbToolgruppen
     //
     this.lbToolgruppen.AutoSize = true;
     this.lbToolgruppen.Location = new System.Drawing.Point(11, 28);
     this.lbToolgruppen.Name     = "lbToolgruppen";
     this.lbToolgruppen.Size     = new System.Drawing.Size(70, 13);
     this.lbToolgruppen.TabIndex = 3;
     this.lbToolgruppen.Text     = "Toolgruppen:";
     //
     // llbWolf066LP
     //
     this.llbWolf066LP.AutoSize     = true;
     this.llbWolf066LP.Location     = new System.Drawing.Point(283, 249);
     this.llbWolf066LP.Name         = "llbWolf066LP";
     this.llbWolf066LP.Size         = new System.Drawing.Size(74, 13);
     this.llbWolf066LP.TabIndex     = 4;
     this.llbWolf066LP.TabStop      = true;
     this.llbWolf066LP.Text         = "by Wolf066LP";
     this.llbWolf066LP.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.llbWolf066LP_LinkClicked);
     //
     // lbCopyRight
     //
     this.lbCopyRight.AutoSize  = true;
     this.lbCopyRight.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
     this.lbCopyRight.Location  = new System.Drawing.Point(16, 249);
     this.lbCopyRight.Name      = "lbCopyRight";
     this.lbCopyRight.Size      = new System.Drawing.Size(90, 13);
     this.lbCopyRight.TabIndex  = 5;
     this.lbCopyRight.Text      = "Copyright © 2016";
     //
     // frmMain
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(369, 269);
     this.Controls.Add(this.lbCopyRight);
     this.Controls.Add(this.llbWolf066LP);
     this.Controls.Add(this.lbToolgruppen);
     this.Controls.Add(this.listToolgruppen);
     this.Controls.Add(this.menuStrip1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview      = true;
     this.MainMenuStrip   = this.menuStrip1;
     this.MaximizeBox     = false;
     this.Name            = "frmMain";
     this.RightToLeft     = System.Windows.Forms.RightToLeft.No;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "OpenTools V2.0";
     this.Activated      += new System.EventHandler(this.frmMain_Activated);
     this.FormClosing    += new System.Windows.Forms.FormClosingEventHandler(this.frmMain_FormClosing);
     this.Load           += new System.EventHandler(this.frmMain_Load);
     this.KeyDown        += new System.Windows.Forms.KeyEventHandler(this.frmMain_KeyDown);
     cmsMain.ResumeLayout(false);
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 39
0
 /// <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.Windows.Forms.ContextMenuStrip          _ResourceMenuStrip;
     System.Windows.Forms.ToolStripMenuItem         _ViewResourceMenuItem;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ArchiveViewer));
     System.Windows.Forms.ImageList          _TypeImageList;
     System.Windows.Forms.ToolStrip          _ToolStrip;
     System.Windows.Forms.ToolStripButton    _SaveArchiveButton;
     System.Windows.Forms.ToolStripSeparator _ToolStripSeparator1;
     System.Windows.Forms.ToolStripButton    _ViewResourceButton;
     System.Windows.Forms.StatusStrip        _StatusStrip;
     this._EntryTreeView     = new System.Windows.Forms.TreeView();
     this._HintLabel         = new System.Windows.Forms.ToolStripStatusLabel();
     this._SaveArchiveDialog = new System.Windows.Forms.SaveFileDialog();
     _ResourceMenuStrip      = new System.Windows.Forms.ContextMenuStrip(this.components);
     _ViewResourceMenuItem   = new System.Windows.Forms.ToolStripMenuItem();
     _TypeImageList          = new System.Windows.Forms.ImageList(this.components);
     _ToolStrip           = new System.Windows.Forms.ToolStrip();
     _SaveArchiveButton   = new System.Windows.Forms.ToolStripButton();
     _ToolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     _ViewResourceButton  = new System.Windows.Forms.ToolStripButton();
     _StatusStrip         = new System.Windows.Forms.StatusStrip();
     _ResourceMenuStrip.SuspendLayout();
     _ToolStrip.SuspendLayout();
     _StatusStrip.SuspendLayout();
     this.SuspendLayout();
     //
     // _EntryTreeView
     //
     this._EntryTreeView.ContextMenuStrip      = _ResourceMenuStrip;
     this._EntryTreeView.Dock                  = System.Windows.Forms.DockStyle.Fill;
     this._EntryTreeView.ImageIndex            = 0;
     this._EntryTreeView.ImageList             = _TypeImageList;
     this._EntryTreeView.Location              = new System.Drawing.Point(0, 25);
     this._EntryTreeView.Name                  = "_EntryTreeView";
     this._EntryTreeView.SelectedImageIndex    = 0;
     this._EntryTreeView.Size                  = new System.Drawing.Size(480, 193);
     this._EntryTreeView.TabIndex              = 0;
     this._EntryTreeView.AfterSelect          += new System.Windows.Forms.TreeViewEventHandler(this.OnSelectEntry);
     this._EntryTreeView.NodeMouseDoubleClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.OnOpenEntry1);
     //
     // _ResourceMenuStrip
     //
     _ResourceMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         _ViewResourceMenuItem
     });
     _ResourceMenuStrip.Name = "entryMenuStrip";
     _ResourceMenuStrip.Size = new System.Drawing.Size(100, 26);
     //
     // _ViewResourceMenuItem
     //
     _ViewResourceMenuItem.Image  = ((System.Drawing.Image)(resources.GetObject("_ViewResourceMenuItem.Image")));
     _ViewResourceMenuItem.Name   = "_ViewResourceMenuItem";
     _ViewResourceMenuItem.Size   = new System.Drawing.Size(99, 22);
     _ViewResourceMenuItem.Text   = "&View";
     _ViewResourceMenuItem.Click += new System.EventHandler(this.OnOpenEntry2);
     //
     // _TypeImageList
     //
     _TypeImageList.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("_TypeImageList.ImageStream")));
     _TypeImageList.TransparentColor = System.Drawing.Color.Transparent;
     _TypeImageList.Images.SetKeyName(0, "Unknown");
     _TypeImageList.Images.SetKeyName(1, "SDS");
     _TypeImageList.Images.SetKeyName(2, "MemFile");
     _TypeImageList.Images.SetKeyName(3, "XML");
     _TypeImageList.Images.SetKeyName(4, "Table");
     _TypeImageList.Images.SetKeyName(5, "Script");
     _TypeImageList.Images.SetKeyName(6, "Texture");
     _TypeImageList.Images.SetKeyName(7, "Sound");
     _TypeImageList.Images.SetKeyName(8, "Cutscene");
     //
     // _ToolStrip
     //
     _ToolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         _SaveArchiveButton,
         _ToolStripSeparator1,
         _ViewResourceButton
     });
     _ToolStrip.Location = new System.Drawing.Point(0, 0);
     _ToolStrip.Name     = "_ToolStrip";
     _ToolStrip.Size     = new System.Drawing.Size(480, 25);
     _ToolStrip.TabIndex = 1;
     _ToolStrip.Text     = "toolStrip1";
     //
     // _SaveArchiveButton
     //
     _SaveArchiveButton.Image = ((System.Drawing.Image)(resources.GetObject("_SaveArchiveButton.Image")));
     _SaveArchiveButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     _SaveArchiveButton.Name   = "_SaveArchiveButton";
     _SaveArchiveButton.Size   = new System.Drawing.Size(94, 22);
     _SaveArchiveButton.Text   = "Save Archive";
     _SaveArchiveButton.Click += new System.EventHandler(this.OnSaveArchive);
     //
     // _ToolStripSeparator1
     //
     _ToolStripSeparator1.Name = "_ToolStripSeparator1";
     _ToolStripSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // _ViewResourceButton
     //
     _ViewResourceButton.Image = ((System.Drawing.Image)(resources.GetObject("_ViewResourceButton.Image")));
     _ViewResourceButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     _ViewResourceButton.Name   = "_ViewResourceButton";
     _ViewResourceButton.Size   = new System.Drawing.Size(103, 22);
     _ViewResourceButton.Text   = "View Resource";
     _ViewResourceButton.Click += new System.EventHandler(this.OnOpenEntry2);
     //
     // _StatusStrip
     //
     _StatusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this._HintLabel
     });
     _StatusStrip.Location = new System.Drawing.Point(0, 218);
     _StatusStrip.Name     = "_StatusStrip";
     _StatusStrip.Size     = new System.Drawing.Size(480, 22);
     _StatusStrip.TabIndex = 2;
     _StatusStrip.Text     = "statusStrip1";
     //
     // _HintLabel
     //
     this._HintLabel.Name = "_HintLabel";
     this._HintLabel.Size = new System.Drawing.Size(30, 17);
     this._HintLabel.Text = "Hint";
     //
     // _SaveArchiveDialog
     //
     this._SaveArchiveDialog.DefaultExt = "sds";
     this._SaveArchiveDialog.Filter     = "Illusion SDS archives (*.sds)|*.sds|All Files (*.*)|*.*";
     //
     // ArchiveViewer
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(480, 240);
     this.Controls.Add(this._EntryTreeView);
     this.Controls.Add(_StatusStrip);
     this.Controls.Add(_ToolStrip);
     this.Name = "ArchiveViewer";
     this.Text = "Archive";
     _ResourceMenuStrip.ResumeLayout(false);
     _ToolStrip.ResumeLayout(false);
     _ToolStrip.PerformLayout();
     _StatusStrip.ResumeLayout(false);
     _StatusStrip.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 40
0
		/// <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.Windows.Forms.ColumnHeader columnHeaderVarName;
            System.Windows.Forms.ColumnHeader columnHeaderVarValue;
            System.Windows.Forms.ColumnHeader columnHeaderProperty;
            System.Windows.Forms.ColumnHeader columnHeaderPropertyValue;
            System.Windows.Forms.ContextMenuStrip contextMenuForSysInfo;
            System.Windows.Forms.ToolStripMenuItem menuItemMsdnEng;
            System.Windows.Forms.ToolStripMenuItem menuItemMsdnRus;
            System.Windows.Forms.ContextMenuStrip contextMenuForEnvVars;
            System.Windows.Forms.ToolStripMenuItem menuItemOpenEnvVarDialog;
            System.Windows.Forms.ListViewGroup listViewGroup1 = new System.Windows.Forms.ListViewGroup("Класс System.Environment", System.Windows.Forms.HorizontalAlignment.Left);
            System.Windows.Forms.ListViewGroup listViewGroup2 = new System.Windows.Forms.ListViewGroup("Класс System.Windows.Forms.SystemInformation", System.Windows.Forms.HorizontalAlignment.Left);
            System.Windows.Forms.ColumnHeader columnHeaderSpecialName;
            System.Windows.Forms.ColumnHeader columnHeaderSpecialPath;
            this.tabControl = new System.Windows.Forms.TabControl();
            this.tabPageSysInfo = new System.Windows.Forms.TabPage();
            this.listViewSysInfo = new System.Windows.Forms.ListView();
            this.tabPageEnv = new System.Windows.Forms.TabPage();
            this.listViewVars = new System.Windows.Forms.ListView();
            this.tabPagePaths = new System.Windows.Forms.TabPage();
            this.listViewPaths = new System.Windows.Forms.ListView();
            columnHeaderVarName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            columnHeaderVarValue = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            columnHeaderProperty = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            columnHeaderPropertyValue = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            contextMenuForSysInfo = new System.Windows.Forms.ContextMenuStrip(this.components);
            menuItemMsdnEng = new System.Windows.Forms.ToolStripMenuItem();
            menuItemMsdnRus = new System.Windows.Forms.ToolStripMenuItem();
            contextMenuForEnvVars = new System.Windows.Forms.ContextMenuStrip(this.components);
            menuItemOpenEnvVarDialog = new System.Windows.Forms.ToolStripMenuItem();
            columnHeaderSpecialName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            columnHeaderSpecialPath = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            contextMenuForSysInfo.SuspendLayout();
            contextMenuForEnvVars.SuspendLayout();
            this.tabControl.SuspendLayout();
            this.tabPageSysInfo.SuspendLayout();
            this.tabPageEnv.SuspendLayout();
            this.tabPagePaths.SuspendLayout();
            this.SuspendLayout();
            // 
            // columnHeaderVarName
            // 
            columnHeaderVarName.Text = "Имя переменной";
            columnHeaderVarName.Width = 105;
            // 
            // columnHeaderVarValue
            // 
            columnHeaderVarValue.Text = "Значение";
            columnHeaderVarValue.Width = 110;
            // 
            // columnHeaderProperty
            // 
            columnHeaderProperty.Text = "Свойство";
            // 
            // columnHeaderPropertyValue
            // 
            columnHeaderPropertyValue.Text = "Значение";
            // 
            // contextMenuForSysInfo
            // 
            contextMenuForSysInfo.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            menuItemMsdnEng,
            menuItemMsdnRus});
            contextMenuForSysInfo.Name = "contextMenuForSysInfo";
            contextMenuForSysInfo.ShowImageMargin = false;
            contextMenuForSysInfo.Size = new System.Drawing.Size(274, 48);
            // 
            // menuItemMsdnEng
            // 
            menuItemMsdnEng.Name = "menuItemMsdnEng";
            menuItemMsdnEng.Size = new System.Drawing.Size(273, 22);
            menuItemMsdnEng.Tag = "EN-US";
            menuItemMsdnEng.Text = "Открыть справку MSDN на англиийском";
            menuItemMsdnEng.Click += new System.EventHandler(this.OnSysInfoContextItem_Click);
            // 
            // menuItemMsdnRus
            // 
            menuItemMsdnRus.Name = "menuItemMsdnRus";
            menuItemMsdnRus.Size = new System.Drawing.Size(273, 22);
            menuItemMsdnRus.Tag = "RU-RU";
            menuItemMsdnRus.Text = "Открыть справку MSDN на русском";
            menuItemMsdnRus.Click += new System.EventHandler(this.OnSysInfoContextItem_Click);
            // 
            // contextMenuForEnvVars
            // 
            contextMenuForEnvVars.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            menuItemOpenEnvVarDialog});
            contextMenuForEnvVars.Name = "contextMenuForEnvVars";
            contextMenuForEnvVars.ShowImageMargin = false;
            contextMenuForEnvVars.Size = new System.Drawing.Size(302, 26);
            // 
            // menuItemOpenEnvVarDialog
            // 
            menuItemOpenEnvVarDialog.Name = "menuItemOpenEnvVarDialog";
            menuItemOpenEnvVarDialog.Size = new System.Drawing.Size(301, 22);
            menuItemOpenEnvVarDialog.Text = "Открыть диалог редактирования переменных";
            menuItemOpenEnvVarDialog.Click += new System.EventHandler(this.OnOpenEnvVarDialogItem_Click);
            // 
            // tabControl
            // 
            this.tabControl.Controls.Add(this.tabPageSysInfo);
            this.tabControl.Controls.Add(this.tabPageEnv);
            this.tabControl.Controls.Add(this.tabPagePaths);
            this.tabControl.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tabControl.Location = new System.Drawing.Point(0, 0);
            this.tabControl.Name = "tabControl";
            this.tabControl.SelectedIndex = 0;
            this.tabControl.Size = new System.Drawing.Size(623, 319);
            this.tabControl.TabIndex = 0;
            this.tabControl.SelectedIndexChanged += new System.EventHandler(this.tabControl_SelectedIndexChanged);
            // 
            // tabPageSysInfo
            // 
            this.tabPageSysInfo.Controls.Add(this.listViewSysInfo);
            this.tabPageSysInfo.Location = new System.Drawing.Point(4, 22);
            this.tabPageSysInfo.Name = "tabPageSysInfo";
            this.tabPageSysInfo.Padding = new System.Windows.Forms.Padding(3);
            this.tabPageSysInfo.Size = new System.Drawing.Size(615, 293);
            this.tabPageSysInfo.TabIndex = 0;
            this.tabPageSysInfo.Text = "Системная информация";
            this.tabPageSysInfo.UseVisualStyleBackColor = true;
            // 
            // listViewSysInfo
            // 
            this.listViewSysInfo.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            columnHeaderProperty,
            columnHeaderPropertyValue});
            this.listViewSysInfo.ContextMenuStrip = contextMenuForSysInfo;
            this.listViewSysInfo.Dock = System.Windows.Forms.DockStyle.Fill;
            this.listViewSysInfo.FullRowSelect = true;
            this.listViewSysInfo.GridLines = true;
            listViewGroup1.Header = "Класс System.Environment";
            listViewGroup1.Name = "Environment";
            listViewGroup2.Header = "Класс System.Windows.Forms.SystemInformation";
            listViewGroup2.Name = "SysInfo";
            this.listViewSysInfo.Groups.AddRange(new System.Windows.Forms.ListViewGroup[] {
            listViewGroup1,
            listViewGroup2});
            this.listViewSysInfo.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
            this.listViewSysInfo.Location = new System.Drawing.Point(3, 3);
            this.listViewSysInfo.Name = "listViewSysInfo";
            this.listViewSysInfo.Size = new System.Drawing.Size(609, 287);
            this.listViewSysInfo.TabIndex = 0;
            this.listViewSysInfo.UseCompatibleStateImageBehavior = false;
            this.listViewSysInfo.View = System.Windows.Forms.View.Details;
            // 
            // tabPageEnv
            // 
            this.tabPageEnv.Controls.Add(this.listViewVars);
            this.tabPageEnv.Location = new System.Drawing.Point(4, 22);
            this.tabPageEnv.Name = "tabPageEnv";
            this.tabPageEnv.Padding = new System.Windows.Forms.Padding(3);
            this.tabPageEnv.Size = new System.Drawing.Size(615, 293);
            this.tabPageEnv.TabIndex = 1;
            this.tabPageEnv.Text = "Переменные окружения";
            this.tabPageEnv.UseVisualStyleBackColor = true;
            // 
            // listViewVars
            // 
            this.listViewVars.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            columnHeaderVarName,
            columnHeaderVarValue});
            this.listViewVars.ContextMenuStrip = contextMenuForEnvVars;
            this.listViewVars.Dock = System.Windows.Forms.DockStyle.Fill;
            this.listViewVars.FullRowSelect = true;
            this.listViewVars.GridLines = true;
            this.listViewVars.Location = new System.Drawing.Point(3, 3);
            this.listViewVars.Name = "listViewVars";
            this.listViewVars.Size = new System.Drawing.Size(609, 287);
            this.listViewVars.TabIndex = 0;
            this.listViewVars.UseCompatibleStateImageBehavior = false;
            this.listViewVars.View = System.Windows.Forms.View.Details;
            // 
            // tabPagePaths
            // 
            this.tabPagePaths.Controls.Add(this.listViewPaths);
            this.tabPagePaths.Location = new System.Drawing.Point(4, 22);
            this.tabPagePaths.Name = "tabPagePaths";
            this.tabPagePaths.Padding = new System.Windows.Forms.Padding(3);
            this.tabPagePaths.Size = new System.Drawing.Size(615, 293);
            this.tabPagePaths.TabIndex = 2;
            this.tabPagePaths.Text = "Пути";
            this.tabPagePaths.UseVisualStyleBackColor = true;
            // 
            // listViewPaths
            // 
            this.listViewPaths.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            columnHeaderSpecialName,
            columnHeaderSpecialPath});
            this.listViewPaths.Dock = System.Windows.Forms.DockStyle.Fill;
            this.listViewPaths.FullRowSelect = true;
            this.listViewPaths.GridLines = true;
            this.listViewPaths.Location = new System.Drawing.Point(3, 3);
            this.listViewPaths.Name = "listViewPaths";
            this.listViewPaths.Size = new System.Drawing.Size(609, 287);
            this.listViewPaths.TabIndex = 0;
            this.listViewPaths.UseCompatibleStateImageBehavior = false;
            this.listViewPaths.View = System.Windows.Forms.View.Details;
            // 
            // columnHeaderSpecialName
            // 
            columnHeaderSpecialName.Text = "SpecialFolder";
            // 
            // columnHeaderSpecialPath
            // 
            columnHeaderSpecialPath.Text = "Путь";
            // 
            // MainForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(623, 319);
            this.Controls.Add(this.tabControl);
            this.Name = "MainForm";
            this.Text = "Информация об окружении процесса";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            this.Load += new System.EventHandler(this.OnLoad);
            contextMenuForSysInfo.ResumeLayout(false);
            contextMenuForEnvVars.ResumeLayout(false);
            this.tabControl.ResumeLayout(false);
            this.tabPageSysInfo.ResumeLayout(false);
            this.tabPageEnv.ResumeLayout(false);
            this.tabPagePaths.ResumeLayout(false);
            this.ResumeLayout(false);

		}
        /// <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.Windows.Forms.ContextMenuStrip contextMenuStrip;
            System.Windows.Forms.SplitContainer splitContainer1;
            System.Windows.Forms.SplitContainer splitContainer2;
            System.Windows.Forms.Panel panel1;
            System.Windows.Forms.Label label1;
            this._openButton = new System.Windows.Forms.ToolStripMenuItem();
            this._expandAllButton = new System.Windows.Forms.ToolStripMenuItem();
            this._refreshButton = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator();
            this._cutButton = new System.Windows.Forms.ToolStripMenuItem();
            this._pasteButton = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripSeparator();
            this._newFolderButton = new System.Windows.Forms.ToolStripMenuItem();
            this._importButton = new System.Windows.Forms.ToolStripMenuItem();
            this._importFolderButton = new System.Windows.Forms.ToolStripMenuItem();
            this._importFileButton = new System.Windows.Forms.ToolStripMenuItem();
            this._exportButton = new System.Windows.Forms.ToolStripMenuItem();
            this._replaceButton = new System.Windows.Forms.ToolStripMenuItem();
            this._deleteButton = new System.Windows.Forms.ToolStripMenuItem();
            this._treeView = new System.Windows.Forms.TreeView();
            this._imageList = new System.Windows.Forms.ImageList(this.components);
            this._propGrid = new System.Windows.Forms.PropertyGrid();
            this._saveButton = new System.Windows.Forms.Button();
            this._logText = new System.Windows.Forms.TextBox();
            this._formModeCheck = new System.Windows.Forms.CheckBox();
            this._serverUrlText = new System.Windows.Forms.TextBox();
            contextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
            splitContainer1 = new System.Windows.Forms.SplitContainer();
            splitContainer2 = new System.Windows.Forms.SplitContainer();
            panel1 = new System.Windows.Forms.Panel();
            label1 = new System.Windows.Forms.Label();
            contextMenuStrip.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(splitContainer1)).BeginInit();
            splitContainer1.Panel1.SuspendLayout();
            splitContainer1.Panel2.SuspendLayout();
            splitContainer1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(splitContainer2)).BeginInit();
            splitContainer2.Panel1.SuspendLayout();
            splitContainer2.Panel2.SuspendLayout();
            splitContainer2.SuspendLayout();
            panel1.SuspendLayout();
            this.SuspendLayout();
            // 
            // contextMenuStrip
            // 
            contextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this._openButton,
            this._expandAllButton,
            this._refreshButton,
            this.toolStripMenuItem1,
            this._cutButton,
            this._pasteButton,
            this.toolStripMenuItem2,
            this._newFolderButton,
            this._importButton,
            this._exportButton,
            this._replaceButton,
            this._deleteButton});
            contextMenuStrip.Name = "_menu";
            contextMenuStrip.Size = new System.Drawing.Size(135, 236);
            // 
            // _openButton
            // 
            this._openButton.Name = "_openButton";
            this._openButton.Size = new System.Drawing.Size(134, 22);
            this._openButton.Text = "Open";
            this._openButton.Click += new System.EventHandler(this._openButton_Click);
            // 
            // _expandAllButton
            // 
            this._expandAllButton.Name = "_expandAllButton";
            this._expandAllButton.Size = new System.Drawing.Size(134, 22);
            this._expandAllButton.Text = "Expand All";
            this._expandAllButton.Click += new System.EventHandler(this._expandAllButton_Click);
            // 
            // _refreshButton
            // 
            this._refreshButton.Name = "_refreshButton";
            this._refreshButton.Size = new System.Drawing.Size(134, 22);
            this._refreshButton.Text = "Refresh";
            this._refreshButton.Click += new System.EventHandler(this._refreshButton_Click);
            // 
            // toolStripMenuItem1
            // 
            this.toolStripMenuItem1.Name = "toolStripMenuItem1";
            this.toolStripMenuItem1.Size = new System.Drawing.Size(131, 6);
            // 
            // _cutButton
            // 
            this._cutButton.Name = "_cutButton";
            this._cutButton.Size = new System.Drawing.Size(134, 22);
            this._cutButton.Text = "Cut";
            this._cutButton.Click += new System.EventHandler(this._cutButton_Click);
            // 
            // _pasteButton
            // 
            this._pasteButton.Name = "_pasteButton";
            this._pasteButton.Size = new System.Drawing.Size(134, 22);
            this._pasteButton.Text = "Paste";
            this._pasteButton.Click += new System.EventHandler(this._pasteButton_Click);
            // 
            // toolStripMenuItem2
            // 
            this.toolStripMenuItem2.Name = "toolStripMenuItem2";
            this.toolStripMenuItem2.Size = new System.Drawing.Size(131, 6);
            // 
            // _newFolderButton
            // 
            this._newFolderButton.Name = "_newFolderButton";
            this._newFolderButton.Size = new System.Drawing.Size(134, 22);
            this._newFolderButton.Text = "New Folder";
            this._newFolderButton.Click += new System.EventHandler(this._newFolderButton_Click);
            // 
            // _importButton
            // 
            this._importButton.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this._importFolderButton,
            this._importFileButton});
            this._importButton.Name = "_importButton";
            this._importButton.Size = new System.Drawing.Size(134, 22);
            this._importButton.Text = "Import";
            // 
            // _importFolderButton
            // 
            this._importFolderButton.Name = "_importFolderButton";
            this._importFolderButton.Size = new System.Drawing.Size(107, 22);
            this._importFolderButton.Text = "Folder";
            this._importFolderButton.Click += new System.EventHandler(this._importFolderButton_Click);
            // 
            // _importFileButton
            // 
            this._importFileButton.Name = "_importFileButton";
            this._importFileButton.Size = new System.Drawing.Size(107, 22);
            this._importFileButton.Text = "File";
            this._importFileButton.Click += new System.EventHandler(this._importFileButton_Click);
            // 
            // _exportButton
            // 
            this._exportButton.Name = "_exportButton";
            this._exportButton.Size = new System.Drawing.Size(134, 22);
            this._exportButton.Text = "Export";
            this._exportButton.Click += new System.EventHandler(this._exportButton_Click);
            // 
            // _replaceButton
            // 
            this._replaceButton.Name = "_replaceButton";
            this._replaceButton.Size = new System.Drawing.Size(134, 22);
            this._replaceButton.Text = "Replace";
            this._replaceButton.Click += new System.EventHandler(this._replaceButton_Click);
            // 
            // _deleteButton
            // 
            this._deleteButton.Name = "_deleteButton";
            this._deleteButton.Size = new System.Drawing.Size(134, 22);
            this._deleteButton.Text = "Delete";
            this._deleteButton.Click += new System.EventHandler(this._deleteButton_Click);
            // 
            // splitContainer1
            // 
            splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
            splitContainer1.Location = new System.Drawing.Point(0, 28);
            splitContainer1.Name = "splitContainer1";
            splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
            // 
            // splitContainer1.Panel1
            // 
            splitContainer1.Panel1.Controls.Add(splitContainer2);
            // 
            // splitContainer1.Panel2
            // 
            splitContainer1.Panel2.Controls.Add(this._logText);
            splitContainer1.Size = new System.Drawing.Size(784, 533);
            splitContainer1.SplitterDistance = 436;
            splitContainer1.TabIndex = 1;
            // 
            // splitContainer2
            // 
            splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
            splitContainer2.Location = new System.Drawing.Point(0, 0);
            splitContainer2.Name = "splitContainer2";
            // 
            // splitContainer2.Panel1
            // 
            splitContainer2.Panel1.Controls.Add(this._treeView);
            // 
            // splitContainer2.Panel2
            // 
            splitContainer2.Panel2.Controls.Add(this._propGrid);
            splitContainer2.Panel2.Controls.Add(this._saveButton);
            splitContainer2.Size = new System.Drawing.Size(784, 436);
            splitContainer2.SplitterDistance = 383;
            splitContainer2.TabIndex = 0;
            // 
            // _treeView
            // 
            this._treeView.AllowDrop = true;
            this._treeView.ContextMenuStrip = contextMenuStrip;
            this._treeView.Dock = System.Windows.Forms.DockStyle.Fill;
            this._treeView.HideSelection = false;
            this._treeView.ImageIndex = 0;
            this._treeView.ImageList = this._imageList;
            this._treeView.ItemHeight = 18;
            this._treeView.LabelEdit = true;
            this._treeView.Location = new System.Drawing.Point(0, 0);
            this._treeView.Name = "_treeView";
            this._treeView.SelectedImageIndex = 0;
            this._treeView.Size = new System.Drawing.Size(383, 436);
            this._treeView.TabIndex = 0;
            this._treeView.AfterLabelEdit += new System.Windows.Forms.NodeLabelEditEventHandler(this._treeView_AfterLabelEdit);
            this._treeView.BeforeExpand += new System.Windows.Forms.TreeViewCancelEventHandler(this._treeView_BeforeExpand);
            this._treeView.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this._treeView_AfterSelect);
            this._treeView.NodeMouseDoubleClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this._treeView_NodeMouseDoubleClick);
            this._treeView.DragDrop += new System.Windows.Forms.DragEventHandler(this._treeView_DragDrop);
            this._treeView.DragOver += new System.Windows.Forms.DragEventHandler(this._treeView_DragOver);
            this._treeView.KeyUp += new System.Windows.Forms.KeyEventHandler(this._treeView_KeyUp);
            this._treeView.MouseUp += new System.Windows.Forms.MouseEventHandler(this._treeView_MouseUp);
            // 
            // _imageList
            // 
            this._imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth32Bit;
            this._imageList.ImageSize = new System.Drawing.Size(16, 16);
            this._imageList.TransparentColor = System.Drawing.Color.Transparent;
            // 
            // _propGrid
            // 
            this._propGrid.Dock = System.Windows.Forms.DockStyle.Fill;
            this._propGrid.HelpVisible = false;
            this._propGrid.Location = new System.Drawing.Point(0, 0);
            this._propGrid.Name = "_propGrid";
            this._propGrid.Size = new System.Drawing.Size(397, 413);
            this._propGrid.TabIndex = 0;
            this._propGrid.ToolbarVisible = false;
            // 
            // _saveButton
            // 
            this._saveButton.Dock = System.Windows.Forms.DockStyle.Bottom;
            this._saveButton.Location = new System.Drawing.Point(0, 413);
            this._saveButton.Name = "_saveButton";
            this._saveButton.Size = new System.Drawing.Size(397, 23);
            this._saveButton.TabIndex = 1;
            this._saveButton.Text = "Save";
            this._saveButton.UseVisualStyleBackColor = true;
            this._saveButton.Click += new System.EventHandler(this._saveButton_Click);
            // 
            // _logText
            // 
            this._logText.Dock = System.Windows.Forms.DockStyle.Fill;
            this._logText.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this._logText.Location = new System.Drawing.Point(0, 0);
            this._logText.Multiline = true;
            this._logText.Name = "_logText";
            this._logText.ScrollBars = System.Windows.Forms.ScrollBars.Both;
            this._logText.Size = new System.Drawing.Size(784, 93);
            this._logText.TabIndex = 0;
            this._logText.WordWrap = false;
            this._logText.KeyUp += new System.Windows.Forms.KeyEventHandler(this._logBox_KeyUp);
            // 
            // panel1
            // 
            panel1.Controls.Add(this._formModeCheck);
            panel1.Controls.Add(label1);
            panel1.Controls.Add(this._serverUrlText);
            panel1.Dock = System.Windows.Forms.DockStyle.Top;
            panel1.Location = new System.Drawing.Point(0, 0);
            panel1.Name = "panel1";
            panel1.Size = new System.Drawing.Size(784, 28);
            panel1.TabIndex = 0;
            // 
            // _formModeCheck
            // 
            this._formModeCheck.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this._formModeCheck.AutoSize = true;
            this._formModeCheck.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
            this._formModeCheck.Location = new System.Drawing.Point(692, 6);
            this._formModeCheck.Name = "_formModeCheck";
            this._formModeCheck.Size = new System.Drawing.Size(82, 17);
            this._formModeCheck.TabIndex = 7;
            this._formModeCheck.Text = "Form Mode:";
            this._formModeCheck.UseVisualStyleBackColor = true;
            this._formModeCheck.CheckedChanged += new System.EventHandler(this._formModeCheck_CheckedChanged);
            // 
            // label1
            // 
            label1.AutoSize = true;
            label1.Location = new System.Drawing.Point(8, 8);
            label1.Name = "label1";
            label1.Size = new System.Drawing.Size(66, 13);
            label1.TabIndex = 0;
            label1.Text = "Server URL:";
            // 
            // _serverUrlText
            // 
            this._serverUrlText.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this._serverUrlText.Location = new System.Drawing.Point(76, 4);
            this._serverUrlText.Name = "_serverUrlText";
            this._serverUrlText.Size = new System.Drawing.Size(604, 20);
            this._serverUrlText.TabIndex = 1;
            this._serverUrlText.Leave += new System.EventHandler(this._serverUrlText_Leave);
            // 
            // MainForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(784, 561);
            this.Controls.Add(splitContainer1);
            this.Controls.Add(panel1);
            this.Name = "MainForm";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Saleslogix File Browser";
            contextMenuStrip.ResumeLayout(false);
            splitContainer1.Panel1.ResumeLayout(false);
            splitContainer1.Panel2.ResumeLayout(false);
            splitContainer1.Panel2.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(splitContainer1)).EndInit();
            splitContainer1.ResumeLayout(false);
            splitContainer2.Panel1.ResumeLayout(false);
            splitContainer2.Panel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(splitContainer2)).EndInit();
            splitContainer2.ResumeLayout(false);
            panel1.ResumeLayout(false);
            panel1.PerformLayout();
            this.ResumeLayout(false);

        }
        /// <summary>
        /// デザイナー サポートに必要なメソッドです。このメソッドの内容を
        /// コード エディターで変更しないでください。
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.Windows.Forms.ContextMenuStrip notifyMenu;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(NotifyIconWrapper));
            this.Add_new_memo = new System.Windows.Forms.ToolStripMenuItem();
            this.change_transportmode = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.exit_app = new System.Windows.Forms.ToolStripMenuItem();
            this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
            this.about_version = new System.Windows.Forms.ToolStripMenuItem();
            notifyMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
            notifyMenu.SuspendLayout();
            // 
            // notifyMenu
            // 
            notifyMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.Add_new_memo,
            this.change_transportmode,
            this.toolStripSeparator1,
            this.about_version,
            this.exit_app});
            notifyMenu.Name = "notifyMenu";
            notifyMenu.Size = new System.Drawing.Size(156, 98);
            // 
            // Add_new_memo
            // 
            this.Add_new_memo.AutoSize = false;
            this.Add_new_memo.Name = "Add_new_memo";
            this.Add_new_memo.Size = new System.Drawing.Size(155, 22);
            this.Add_new_memo.Text = "新しいメモを追加";
            // 
            // change_transportmode
            // 
            this.change_transportmode.CheckOnClick = true;
            this.change_transportmode.Name = "change_transportmode";
            this.change_transportmode.Size = new System.Drawing.Size(155, 22);
            this.change_transportmode.Text = "透過モード";
            this.change_transportmode.Click += new System.EventHandler(this.change_transportmode_Click);
            // 
            // toolStripSeparator1
            // 
            this.toolStripSeparator1.Name = "toolStripSeparator1";
            this.toolStripSeparator1.Size = new System.Drawing.Size(152, 6);
            // 
            // exit_app
            // 
            this.exit_app.Name = "exit_app";
            this.exit_app.Size = new System.Drawing.Size(155, 22);
            this.exit_app.Text = "終了";
            // 
            // notifyIcon1
            // 
            this.notifyIcon1.ContextMenuStrip = notifyMenu;
            this.notifyIcon1.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon")));
            this.notifyIcon1.Text = "lentum";
            this.notifyIcon1.Visible = true;
            // 
            // about_version
            // 
            this.about_version.Name = "about_version";
            this.about_version.Size = new System.Drawing.Size(155, 22);
            this.about_version.Text = "lentumについて";
            this.about_version.Click += new System.EventHandler(this.about_version_Click);
            notifyMenu.ResumeLayout(false);

        }
Esempio n. 43
0
 /// <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.Windows.Forms.ContextMenuStrip      contextMenuStrip1;
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     this.libraryRebaseMenuItem        = new System.Windows.Forms.ToolStripMenuItem();
     this.histogramEntryBindingSource1 = new System.Windows.Forms.BindingSource(this.components);
     this.histogramEntryBindingSource  = new System.Windows.Forms.BindingSource(this.components);
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.button1  = new System.Windows.Forms.Button();
     this.regionMonitorCheckBox         = new System.Windows.Forms.CheckBox();
     this.alternateResultsCheckbox      = new System.Windows.Forms.CheckBox();
     this.instructionTracingCheckbox    = new System.Windows.Forms.CheckBox();
     this.libraryLoadMonitoringCheckbox = new System.Windows.Forms.CheckBox();
     this.regionStartBox               = new System.Windows.Forms.TextBox();
     this.regionEndBox                 = new System.Windows.Forms.TextBox();
     this.resultsFileBox               = new System.Windows.Forms.TextBox();
     this.label1                       = new System.Windows.Forms.Label();
     this.memoryPINDllPath             = new System.Windows.Forms.TextBox();
     this.pinPathBox                   = new System.Windows.Forms.TextBox();
     this.label2                       = new System.Windows.Forms.Label();
     this.label3                       = new System.Windows.Forms.Label();
     this.tabContainer                 = new System.Windows.Forms.TabControl();
     this.tabPage1                     = new System.Windows.Forms.TabPage();
     this.traceOnStartCheckbox         = new System.Windows.Forms.CheckBox();
     this.tabPage2                     = new System.Windows.Forms.TabPage();
     this.snapshotStatusLabel          = new System.Windows.Forms.Label();
     this.tracingStatusLabel           = new System.Windows.Forms.Label();
     this.startManualTracingButton     = new System.Windows.Forms.Button();
     this.snapshotButton               = new System.Windows.Forms.Button();
     this.tabPage3                     = new System.Windows.Forms.TabPage();
     this.tableLayoutPanel1            = new System.Windows.Forms.TableLayoutPanel();
     this.loadedLibraryList            = new System.Windows.Forms.ListBox();
     this.librariesBindingSource       = new System.Windows.Forms.BindingSource(this.components);
     this.processInstructionFileButton = new System.Windows.Forms.Button();
     this.resultsGridView              = new System.Windows.Forms.DataGridView();
     this.instructionnumberDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.addressDataGridViewTextBoxColumn           = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.SystemCallName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Depth          = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.threadidDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.timeDataGridViewTextBoxColumn     = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.LibraryName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.instructionBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.loadedThreadList         = new System.Windows.Forms.ListBox();
     this.threadBindingSource      = new System.Windows.Forms.BindingSource(this.components);
     this.lowDepthTextBox          = new System.Windows.Forms.TextBox();
     this.highDepthTextBox         = new System.Windows.Forms.TextBox();
     this.tabPage4          = new System.Windows.Forms.TabPage();
     this.histogramDataView = new System.Windows.Forms.DataGridView();
     this.addressDataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.countDataGridViewTextBoxColumn    = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.histogramBindingSource            = new System.Windows.Forms.BindingSource(this.components);
     this.timer1       = new System.Windows.Forms.Timer(this.components);
     contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     contextMenuStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.histogramEntryBindingSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.histogramEntryBindingSource)).BeginInit();
     this.tabContainer.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.tabPage2.SuspendLayout();
     this.tabPage3.SuspendLayout();
     this.tableLayoutPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.librariesBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.resultsGridView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.instructionBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.threadBindingSource)).BeginInit();
     this.tabPage4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.histogramDataView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.histogramBindingSource)).BeginInit();
     this.SuspendLayout();
     //
     // contextMenuStrip1
     //
     contextMenuStrip1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
     contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.libraryRebaseMenuItem
     });
     contextMenuStrip1.Name            = "contextMenuStrip1";
     contextMenuStrip1.ShowImageMargin = false;
     contextMenuStrip1.Size            = new System.Drawing.Size(128, 48);
     //
     // libraryRebaseMenuItem
     //
     this.libraryRebaseMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
     this.libraryRebaseMenuItem.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.libraryRebaseMenuItem.Name   = "libraryRebaseMenuItem";
     this.libraryRebaseMenuItem.Size   = new System.Drawing.Size(127, 22);
     this.libraryRebaseMenuItem.Text   = "Library Rebase";
     this.libraryRebaseMenuItem.Click += new System.EventHandler(this.toolStripMenuItem1_Click);
     //
     // histogramEntryBindingSource1
     //
     this.histogramEntryBindingSource1.DataSource = typeof(MemoryPINGui.HistogramEntry);
     //
     // textBox1
     //
     this.textBox1.AllowDrop  = true;
     this.textBox1.Location   = new System.Drawing.Point(13, 12);
     this.textBox1.Name       = "textBox1";
     this.textBox1.Size       = new System.Drawing.Size(306, 20);
     this.textBox1.TabIndex   = 0;
     this.textBox1.DragDrop  += new System.Windows.Forms.DragEventHandler(this.textBox1_DragDrop);
     this.textBox1.DragEnter += new System.Windows.Forms.DragEventHandler(this.textBox1_DragEnter);
     //
     // button1
     //
     this.button1.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
     this.button1.AutoSize = true;
     this.button1.Location = new System.Drawing.Point(6, 325);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(947, 23);
     this.button1.TabIndex = 12;
     this.button1.Text     = "Execute PIN tool";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // regionMonitorCheckBox
     //
     this.regionMonitorCheckBox.AutoSize = true;
     this.regionMonitorCheckBox.Location = new System.Drawing.Point(13, 101);
     this.regionMonitorCheckBox.Name     = "regionMonitorCheckBox";
     this.regionMonitorCheckBox.Size     = new System.Drawing.Size(112, 17);
     this.regionMonitorCheckBox.TabIndex = 3;
     this.regionMonitorCheckBox.Text     = "Region Monitoring";
     this.regionMonitorCheckBox.UseVisualStyleBackColor = true;
     this.regionMonitorCheckBox.CheckedChanged         += new System.EventHandler(this.checkBox1_CheckedChanged);
     //
     // alternateResultsCheckbox
     //
     this.alternateResultsCheckbox.AutoSize = true;
     this.alternateResultsCheckbox.Location = new System.Drawing.Point(13, 128);
     this.alternateResultsCheckbox.Name     = "alternateResultsCheckbox";
     this.alternateResultsCheckbox.Size     = new System.Drawing.Size(125, 17);
     this.alternateResultsCheckbox.TabIndex = 6;
     this.alternateResultsCheckbox.Text     = "Alternate Results File";
     this.alternateResultsCheckbox.UseVisualStyleBackColor = true;
     this.alternateResultsCheckbox.CheckedChanged         += new System.EventHandler(this.checkBox2_CheckedChanged);
     //
     // instructionTracingCheckbox
     //
     this.instructionTracingCheckbox.AutoSize = true;
     this.instructionTracingCheckbox.Location = new System.Drawing.Point(13, 153);
     this.instructionTracingCheckbox.Name     = "instructionTracingCheckbox";
     this.instructionTracingCheckbox.Size     = new System.Drawing.Size(114, 17);
     this.instructionTracingCheckbox.TabIndex = 8;
     this.instructionTracingCheckbox.Text     = "Instruction Tracing";
     this.instructionTracingCheckbox.UseVisualStyleBackColor = true;
     this.instructionTracingCheckbox.CheckedChanged         += new System.EventHandler(this.instructionTracingCheckbox_CheckedChanged);
     //
     // libraryLoadMonitoringCheckbox
     //
     this.libraryLoadMonitoringCheckbox.AutoSize = true;
     this.libraryLoadMonitoringCheckbox.Location = new System.Drawing.Point(13, 176);
     this.libraryLoadMonitoringCheckbox.Name     = "libraryLoadMonitoringCheckbox";
     this.libraryLoadMonitoringCheckbox.Size     = new System.Drawing.Size(136, 17);
     this.libraryLoadMonitoringCheckbox.TabIndex = 11;
     this.libraryLoadMonitoringCheckbox.Text     = "Library Load Monitoring";
     this.libraryLoadMonitoringCheckbox.UseVisualStyleBackColor = true;
     //
     // regionStartBox
     //
     this.regionStartBox.Enabled  = false;
     this.regionStartBox.Location = new System.Drawing.Point(150, 98);
     this.regionStartBox.Name     = "regionStartBox";
     this.regionStartBox.Size     = new System.Drawing.Size(175, 20);
     this.regionStartBox.TabIndex = 4;
     //
     // regionEndBox
     //
     this.regionEndBox.Enabled  = false;
     this.regionEndBox.Location = new System.Drawing.Point(331, 98);
     this.regionEndBox.Name     = "regionEndBox";
     this.regionEndBox.Size     = new System.Drawing.Size(175, 20);
     this.regionEndBox.TabIndex = 5;
     //
     // resultsFileBox
     //
     this.resultsFileBox.Enabled  = false;
     this.resultsFileBox.Location = new System.Drawing.Point(150, 125);
     this.resultsFileBox.Name     = "resultsFileBox";
     this.resultsFileBox.Size     = new System.Drawing.Size(356, 20);
     this.resultsFileBox.TabIndex = 7;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(325, 13);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(124, 13);
     this.label1.TabIndex = 6;
     this.label1.Text     = "Executable to Instrument";
     //
     // memoryPINDllPath
     //
     this.memoryPINDllPath.AllowDrop  = true;
     this.memoryPINDllPath.Location   = new System.Drawing.Point(13, 38);
     this.memoryPINDllPath.Name       = "memoryPINDllPath";
     this.memoryPINDllPath.Size       = new System.Drawing.Size(306, 20);
     this.memoryPINDllPath.TabIndex   = 1;
     this.memoryPINDllPath.DragDrop  += new System.Windows.Forms.DragEventHandler(this.memorypinBox_DragDrop);
     this.memoryPINDllPath.DragEnter += new System.Windows.Forms.DragEventHandler(this.memorypinBox_DragEnter);
     //
     // pinPathBox
     //
     this.pinPathBox.AllowDrop  = true;
     this.pinPathBox.Location   = new System.Drawing.Point(13, 64);
     this.pinPathBox.Name       = "pinPathBox";
     this.pinPathBox.Size       = new System.Drawing.Size(306, 20);
     this.pinPathBox.TabIndex   = 2;
     this.pinPathBox.Text       = "pin";
     this.pinPathBox.DragDrop  += new System.Windows.Forms.DragEventHandler(this.pinpath_DragDrop);
     this.pinPathBox.DragEnter += new System.Windows.Forms.DragEventHandler(this.pinpath_DragEnter);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(326, 38);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(85, 13);
     this.label2.TabIndex = 7;
     this.label2.Text     = "MemoryPIN DLL";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(328, 64);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(104, 13);
     this.label3.TabIndex = 8;
     this.label3.Text     = "Intel PIN Executable";
     //
     // tabContainer
     //
     this.tabContainer.Controls.Add(this.tabPage1);
     this.tabContainer.Controls.Add(this.tabPage2);
     this.tabContainer.Controls.Add(this.tabPage3);
     this.tabContainer.Controls.Add(this.tabPage4);
     this.tabContainer.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.tabContainer.Location      = new System.Drawing.Point(0, 0);
     this.tabContainer.Name          = "tabContainer";
     this.tabContainer.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.tabContainer.SelectedIndex = 0;
     this.tabContainer.Size          = new System.Drawing.Size(1262, 392);
     this.tabContainer.TabIndex      = 14;
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.traceOnStartCheckbox);
     this.tabPage1.Controls.Add(this.textBox1);
     this.tabPage1.Controls.Add(this.button1);
     this.tabPage1.Controls.Add(this.memoryPINDllPath);
     this.tabPage1.Controls.Add(this.label3);
     this.tabPage1.Controls.Add(this.pinPathBox);
     this.tabPage1.Controls.Add(this.label2);
     this.tabPage1.Controls.Add(this.regionMonitorCheckBox);
     this.tabPage1.Controls.Add(this.label1);
     this.tabPage1.Controls.Add(this.alternateResultsCheckbox);
     this.tabPage1.Controls.Add(this.resultsFileBox);
     this.tabPage1.Controls.Add(this.instructionTracingCheckbox);
     this.tabPage1.Controls.Add(this.regionEndBox);
     this.tabPage1.Controls.Add(this.libraryLoadMonitoringCheckbox);
     this.tabPage1.Controls.Add(this.regionStartBox);
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Padding  = new System.Windows.Forms.Padding(3);
     this.tabPage1.Size     = new System.Drawing.Size(1254, 366);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text     = "Configuration Page";
     this.tabPage1.UseVisualStyleBackColor = true;
     //
     // traceOnStartCheckbox
     //
     this.traceOnStartCheckbox.AutoSize = true;
     this.traceOnStartCheckbox.Location = new System.Drawing.Point(150, 153);
     this.traceOnStartCheckbox.Name     = "traceOnStartCheckbox";
     this.traceOnStartCheckbox.Size     = new System.Drawing.Size(190, 17);
     this.traceOnStartCheckbox.TabIndex = 13;
     this.traceOnStartCheckbox.Text     = "Enable Instruction Tracing on Start";
     this.traceOnStartCheckbox.UseVisualStyleBackColor = true;
     //
     // tabPage2
     //
     this.tabPage2.Controls.Add(this.snapshotStatusLabel);
     this.tabPage2.Controls.Add(this.tracingStatusLabel);
     this.tabPage2.Controls.Add(this.startManualTracingButton);
     this.tabPage2.Controls.Add(this.snapshotButton);
     this.tabPage2.Location = new System.Drawing.Point(4, 22);
     this.tabPage2.Name     = "tabPage2";
     this.tabPage2.Padding  = new System.Windows.Forms.Padding(3);
     this.tabPage2.Size     = new System.Drawing.Size(1254, 366);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text     = "Control Page";
     this.tabPage2.UseVisualStyleBackColor = true;
     //
     // snapshotStatusLabel
     //
     this.snapshotStatusLabel.AutoSize = true;
     this.snapshotStatusLabel.Location = new System.Drawing.Point(179, 40);
     this.snapshotStatusLabel.Name     = "snapshotStatusLabel";
     this.snapshotStatusLabel.Size     = new System.Drawing.Size(91, 13);
     this.snapshotStatusLabel.TabIndex = 17;
     this.snapshotStatusLabel.Text     = "Snapshot Status: ";
     this.snapshotStatusLabel.Paint   += new System.Windows.Forms.PaintEventHandler(this.snapshotStatusLabel_Paint);
     //
     // tracingStatusLabel
     //
     this.tracingStatusLabel.AutoSize = true;
     this.tracingStatusLabel.Location = new System.Drawing.Point(179, 11);
     this.tracingStatusLabel.Name     = "tracingStatusLabel";
     this.tracingStatusLabel.Size     = new System.Drawing.Size(82, 13);
     this.tracingStatusLabel.TabIndex = 16;
     this.tracingStatusLabel.Text     = "Tracing Status: ";
     this.tracingStatusLabel.Paint   += new System.Windows.Forms.PaintEventHandler(this.tracingStatusLabel_Paint);
     //
     // startManualTracingButton
     //
     this.startManualTracingButton.Location = new System.Drawing.Point(3, 6);
     this.startManualTracingButton.Name     = "startManualTracingButton";
     this.startManualTracingButton.Size     = new System.Drawing.Size(170, 23);
     this.startManualTracingButton.TabIndex = 15;
     this.startManualTracingButton.Text     = "Enable Tracing";
     this.startManualTracingButton.UseVisualStyleBackColor = true;
     this.startManualTracingButton.Click += new System.EventHandler(this.startManualTracingButton_Click);
     //
     // snapshotButton
     //
     this.snapshotButton.Location = new System.Drawing.Point(3, 35);
     this.snapshotButton.Name     = "snapshotButton";
     this.snapshotButton.Size     = new System.Drawing.Size(170, 23);
     this.snapshotButton.TabIndex = 14;
     this.snapshotButton.Text     = "Signal Snapshot";
     this.snapshotButton.UseVisualStyleBackColor = true;
     this.snapshotButton.Click += new System.EventHandler(this.snapshotButton_Click_1);
     //
     // tabPage3
     //
     this.tabPage3.Controls.Add(this.tableLayoutPanel1);
     this.tabPage3.Location = new System.Drawing.Point(4, 22);
     this.tabPage3.Name     = "tabPage3";
     this.tabPage3.Padding  = new System.Windows.Forms.Padding(3);
     this.tabPage3.Size     = new System.Drawing.Size(1254, 366);
     this.tabPage3.TabIndex = 2;
     this.tabPage3.Text     = "Results Page";
     this.tabPage3.UseVisualStyleBackColor = true;
     this.tabPage3.Enter += new System.EventHandler(this.resultsPageActive);
     this.tabPage3.Leave += new System.EventHandler(this.resultsPageInactive);
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.tableLayoutPanel1.ColumnCount  = 3;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 42.11538F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 29.00641F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 28.92628F));
     this.tableLayoutPanel1.Controls.Add(this.loadedLibraryList, 1, 1);
     this.tableLayoutPanel1.Controls.Add(this.processInstructionFileButton, 0, 0);
     this.tableLayoutPanel1.Controls.Add(this.resultsGridView, 0, 1);
     this.tableLayoutPanel1.Controls.Add(this.loadedThreadList, 1, 2);
     this.tableLayoutPanel1.Controls.Add(this.lowDepthTextBox, 1, 0);
     this.tableLayoutPanel1.Controls.Add(this.highDepthTextBox, 2, 0);
     this.tableLayoutPanel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel1.Location = new System.Drawing.Point(3, 3);
     this.tableLayoutPanel1.Name     = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 3;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 33F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel1.Size     = new System.Drawing.Size(1248, 360);
     this.tableLayoutPanel1.TabIndex = 3;
     //
     // loadedLibraryList
     //
     this.tableLayoutPanel1.SetColumnSpan(this.loadedLibraryList, 2);
     this.loadedLibraryList.ContextMenuStrip      = contextMenuStrip1;
     this.loadedLibraryList.DataSource            = this.librariesBindingSource;
     this.loadedLibraryList.Dock                  = System.Windows.Forms.DockStyle.Fill;
     this.loadedLibraryList.FormattingEnabled     = true;
     this.loadedLibraryList.Location              = new System.Drawing.Point(528, 36);
     this.loadedLibraryList.Name                  = "loadedLibraryList";
     this.loadedLibraryList.SelectionMode         = System.Windows.Forms.SelectionMode.MultiExtended;
     this.loadedLibraryList.Size                  = new System.Drawing.Size(717, 157);
     this.loadedLibraryList.TabIndex              = 2;
     this.loadedLibraryList.SelectedValueChanged += new System.EventHandler(this.loadedLibraryList_SelectedValueChanged);
     //
     // librariesBindingSource
     //
     this.librariesBindingSource.DataSource = typeof(MemoryPINGui.LibraryResultsProcessor);
     //
     // processInstructionFileButton
     //
     this.processInstructionFileButton.Location = new System.Drawing.Point(3, 3);
     this.processInstructionFileButton.Name     = "processInstructionFileButton";
     this.processInstructionFileButton.Size     = new System.Drawing.Size(170, 23);
     this.processInstructionFileButton.TabIndex = 2;
     this.processInstructionFileButton.Text     = "Process Instruction File";
     this.processInstructionFileButton.UseVisualStyleBackColor = true;
     this.processInstructionFileButton.Click += new System.EventHandler(this.processInstructionFileButton_Click);
     //
     // resultsGridView
     //
     this.resultsGridView.AllowUserToAddRows          = false;
     this.resultsGridView.AllowUserToDeleteRows       = false;
     this.resultsGridView.AutoGenerateColumns         = false;
     this.resultsGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.resultsGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
         this.instructionnumberDataGridViewTextBoxColumn,
         this.addressDataGridViewTextBoxColumn,
         this.SystemCallName,
         this.Depth,
         this.threadidDataGridViewTextBoxColumn,
         this.timeDataGridViewTextBoxColumn,
         this.LibraryName
     });
     this.resultsGridView.DataSource        = this.instructionBindingSource;
     this.resultsGridView.Dock              = System.Windows.Forms.DockStyle.Fill;
     this.resultsGridView.EditMode          = System.Windows.Forms.DataGridViewEditMode.EditProgrammatically;
     this.resultsGridView.Location          = new System.Drawing.Point(3, 36);
     this.resultsGridView.Name              = "resultsGridView";
     this.resultsGridView.ReadOnly          = true;
     this.resultsGridView.RowHeadersVisible = false;
     this.tableLayoutPanel1.SetRowSpan(this.resultsGridView, 2);
     this.resultsGridView.Size               = new System.Drawing.Size(519, 321);
     this.resultsGridView.TabIndex           = 3;
     this.resultsGridView.DataSourceChanged += new System.EventHandler(this.resultsGridView_DataSourceChanged);
     //
     // instructionnumberDataGridViewTextBoxColumn
     //
     this.instructionnumberDataGridViewTextBoxColumn.DataPropertyName = "Instructionnumber";
     this.instructionnumberDataGridViewTextBoxColumn.HeaderText       = "Instructionnumber";
     this.instructionnumberDataGridViewTextBoxColumn.Name             = "instructionnumberDataGridViewTextBoxColumn";
     this.instructionnumberDataGridViewTextBoxColumn.ReadOnly         = true;
     //
     // addressDataGridViewTextBoxColumn
     //
     this.addressDataGridViewTextBoxColumn.DataPropertyName = "Address";
     dataGridViewCellStyle1.Format    = "X08";
     dataGridViewCellStyle1.NullValue = "0";
     this.addressDataGridViewTextBoxColumn.DefaultCellStyle = dataGridViewCellStyle1;
     this.addressDataGridViewTextBoxColumn.HeaderText       = "Address";
     this.addressDataGridViewTextBoxColumn.Name             = "addressDataGridViewTextBoxColumn";
     this.addressDataGridViewTextBoxColumn.ReadOnly         = true;
     //
     // SystemCallName
     //
     this.SystemCallName.DataPropertyName = "SystemCallName";
     this.SystemCallName.HeaderText       = "SystemCallName";
     this.SystemCallName.Name             = "SystemCallName";
     this.SystemCallName.ReadOnly         = true;
     //
     // Depth
     //
     this.Depth.DataPropertyName = "Depth";
     this.Depth.HeaderText       = "Depth";
     this.Depth.Name             = "Depth";
     this.Depth.ReadOnly         = true;
     //
     // threadidDataGridViewTextBoxColumn
     //
     this.threadidDataGridViewTextBoxColumn.DataPropertyName = "Threadid";
     this.threadidDataGridViewTextBoxColumn.HeaderText       = "Threadid";
     this.threadidDataGridViewTextBoxColumn.Name             = "threadidDataGridViewTextBoxColumn";
     this.threadidDataGridViewTextBoxColumn.ReadOnly         = true;
     //
     // timeDataGridViewTextBoxColumn
     //
     this.timeDataGridViewTextBoxColumn.DataPropertyName = "Time";
     this.timeDataGridViewTextBoxColumn.HeaderText       = "Time";
     this.timeDataGridViewTextBoxColumn.Name             = "timeDataGridViewTextBoxColumn";
     this.timeDataGridViewTextBoxColumn.ReadOnly         = true;
     //
     // LibraryName
     //
     this.LibraryName.DataPropertyName = "LibraryName";
     this.LibraryName.HeaderText       = "LibraryName";
     this.LibraryName.Name             = "LibraryName";
     this.LibraryName.ReadOnly         = true;
     //
     // instructionBindingSource
     //
     this.instructionBindingSource.DataSource = typeof(MemoryPINGui.Instruction);
     //
     // loadedThreadList
     //
     this.tableLayoutPanel1.SetColumnSpan(this.loadedThreadList, 2);
     this.loadedThreadList.DataSource            = this.threadBindingSource;
     this.loadedThreadList.Dock                  = System.Windows.Forms.DockStyle.Fill;
     this.loadedThreadList.FormattingEnabled     = true;
     this.loadedThreadList.Location              = new System.Drawing.Point(528, 199);
     this.loadedThreadList.Name                  = "loadedThreadList";
     this.loadedThreadList.SelectionMode         = System.Windows.Forms.SelectionMode.MultiSimple;
     this.loadedThreadList.Size                  = new System.Drawing.Size(717, 158);
     this.loadedThreadList.TabIndex              = 4;
     this.loadedThreadList.SelectedValueChanged += new System.EventHandler(this.loadedThreadList_SelectedValueChanged);
     //
     // lowDepthTextBox
     //
     this.lowDepthTextBox.Location     = new System.Drawing.Point(528, 3);
     this.lowDepthTextBox.Name         = "lowDepthTextBox";
     this.lowDepthTextBox.Size         = new System.Drawing.Size(355, 20);
     this.lowDepthTextBox.TabIndex     = 5;
     this.lowDepthTextBox.Text         = "Lower Instruction Depth";
     this.lowDepthTextBox.TextChanged += new System.EventHandler(this.depthFilterChanged);
     //
     // highDepthTextBox
     //
     this.highDepthTextBox.Location     = new System.Drawing.Point(889, 3);
     this.highDepthTextBox.Name         = "highDepthTextBox";
     this.highDepthTextBox.Size         = new System.Drawing.Size(354, 20);
     this.highDepthTextBox.TabIndex     = 6;
     this.highDepthTextBox.Text         = "High Instruction Depth";
     this.highDepthTextBox.TextChanged += new System.EventHandler(this.depthFilterChanged);
     //
     // tabPage4
     //
     this.tabPage4.Controls.Add(this.histogramDataView);
     this.tabPage4.Location = new System.Drawing.Point(4, 22);
     this.tabPage4.Name     = "tabPage4";
     this.tabPage4.Padding  = new System.Windows.Forms.Padding(3);
     this.tabPage4.Size     = new System.Drawing.Size(1254, 366);
     this.tabPage4.TabIndex = 3;
     this.tabPage4.Text     = "Histogram";
     this.tabPage4.UseVisualStyleBackColor = true;
     this.tabPage4.Enter += new System.EventHandler(this.histogramData_Enter);
     //
     // histogramDataView
     //
     this.histogramDataView.AllowUserToAddRows          = false;
     this.histogramDataView.AllowUserToDeleteRows       = false;
     this.histogramDataView.AllowUserToOrderColumns     = true;
     this.histogramDataView.AutoGenerateColumns         = false;
     this.histogramDataView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.histogramDataView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
         this.addressDataGridViewTextBoxColumn1,
         this.countDataGridViewTextBoxColumn
     });
     this.histogramDataView.DataSource = this.histogramEntryBindingSource1;
     this.histogramDataView.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.histogramDataView.Location   = new System.Drawing.Point(3, 3);
     this.histogramDataView.Name       = "histogramDataView";
     this.histogramDataView.ReadOnly   = true;
     this.histogramDataView.Size       = new System.Drawing.Size(1248, 360);
     this.histogramDataView.TabIndex   = 0;
     //
     // addressDataGridViewTextBoxColumn1
     //
     this.addressDataGridViewTextBoxColumn1.DataPropertyName = "Address";
     this.addressDataGridViewTextBoxColumn1.HeaderText       = "Address";
     this.addressDataGridViewTextBoxColumn1.Name             = "addressDataGridViewTextBoxColumn1";
     this.addressDataGridViewTextBoxColumn1.ReadOnly         = true;
     //
     // countDataGridViewTextBoxColumn
     //
     this.countDataGridViewTextBoxColumn.DataPropertyName = "Count";
     this.countDataGridViewTextBoxColumn.HeaderText       = "Count";
     this.countDataGridViewTextBoxColumn.Name             = "countDataGridViewTextBoxColumn";
     this.countDataGridViewTextBoxColumn.ReadOnly         = true;
     //
     // timer1
     //
     this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1262, 392);
     this.Controls.Add(this.tabContainer);
     this.Name = "Form1";
     this.Text = "Form1";
     contextMenuStrip1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.histogramEntryBindingSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.histogramEntryBindingSource)).EndInit();
     this.tabContainer.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.tabPage1.PerformLayout();
     this.tabPage2.ResumeLayout(false);
     this.tabPage2.PerformLayout();
     this.tabPage3.ResumeLayout(false);
     this.tableLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.librariesBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.resultsGridView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.instructionBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.threadBindingSource)).EndInit();
     this.tabPage4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.histogramDataView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.histogramBindingSource)).EndInit();
     this.ResumeLayout(false);
 }
Esempio n. 44
0
 /// <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.Windows.Forms.ContextMenuStrip          contextMenuStrip;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormMain));
     this.toolStripMenuItemShow     = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItemExit     = new System.Windows.Forms.ToolStripMenuItem();
     this.notifyIcon                = new System.Windows.Forms.NotifyIcon(this.components);
     this.labelCopyright            = new System.Windows.Forms.Label();
     this.labelTitle                = new System.Windows.Forms.Label();
     this.buttonSetWallpaper        = new System.Windows.Forms.Button();
     this.buttonNext                = new System.Windows.Forms.Button();
     this.buttonPrevious            = new System.Windows.Forms.Button();
     this.pictureBox                = new System.Windows.Forms.PictureBox();
     this.menuStrip                 = new System.Windows.Forms.MenuStrip();
     this.fileToolStripMenuItem     = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItemFileExit = new System.Windows.Forms.ToolStripMenuItem();
     this.toolsToolStripMenuItem    = new System.Windows.Forms.ToolStripMenuItem();
     this.optionsToolStripMenuItem  = new System.Windows.Forms.ToolStripMenuItem();
     this.helpToolStripMenuItem     = new System.Windows.Forms.ToolStripMenuItem();
     this.aboutToolStripMenuItem    = new System.Windows.Forms.ToolStripMenuItem();
     this.timer       = new System.Windows.Forms.Timer(this.components);
     this.progressBar = new System.Windows.Forms.ProgressBar();
     contextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
     contextMenuStrip.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit();
     this.menuStrip.SuspendLayout();
     this.SuspendLayout();
     //
     // contextMenuStrip
     //
     contextMenuStrip.ImageScalingSize = new System.Drawing.Size(18, 18);
     contextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripMenuItemShow,
         this.toolStripMenuItemExit
     });
     contextMenuStrip.Name            = "contextMenuStrip";
     contextMenuStrip.ShowImageMargin = false;
     contextMenuStrip.Size            = new System.Drawing.Size(90, 52);
     //
     // toolStripMenuItemShow
     //
     this.toolStripMenuItemShow.Name   = "toolStripMenuItemShow";
     this.toolStripMenuItemShow.Size   = new System.Drawing.Size(89, 24);
     this.toolStripMenuItemShow.Text   = "Show";
     this.toolStripMenuItemShow.Click += new System.EventHandler(this.toolStripMenuItemShow_Click);
     //
     // toolStripMenuItemExit
     //
     this.toolStripMenuItemExit.Name   = "toolStripMenuItemExit";
     this.toolStripMenuItemExit.Size   = new System.Drawing.Size(89, 24);
     this.toolStripMenuItemExit.Text   = "Exit";
     this.toolStripMenuItemExit.Click += new System.EventHandler(this.toolStripMenuItemExit_Click);
     //
     // notifyIcon
     //
     this.notifyIcon.ContextMenuStrip = contextMenuStrip;
     this.notifyIcon.Icon             = ((System.Drawing.Icon)(resources.GetObject("notifyIcon.Icon")));
     this.notifyIcon.Text             = "Bing Wallpaper";
     this.notifyIcon.Visible          = true;
     //
     // labelCopyright
     //
     this.labelCopyright.AutoEllipsis = true;
     this.labelCopyright.Font         = new System.Drawing.Font("Segoe UI", 8.150944F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelCopyright.ForeColor    = System.Drawing.Color.LightGray;
     this.labelCopyright.ImageAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     this.labelCopyright.Location     = new System.Drawing.Point(16, 75);
     this.labelCopyright.Margin       = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.labelCopyright.Name         = "labelCopyright";
     this.labelCopyright.Size         = new System.Drawing.Size(480, 18);
     this.labelCopyright.TabIndex     = 4;
     this.labelCopyright.Text         = "Copyright";
     //
     // labelTitle
     //
     this.labelTitle.AutoEllipsis = true;
     this.labelTitle.Font         = new System.Drawing.Font("Segoe UI", 14.26415F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelTitle.ForeColor    = System.Drawing.Color.White;
     this.labelTitle.Location     = new System.Drawing.Point(13, 36);
     this.labelTitle.Margin       = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.labelTitle.Name         = "labelTitle";
     this.labelTitle.Size         = new System.Drawing.Size(480, 39);
     this.labelTitle.TabIndex     = 3;
     this.labelTitle.Text         = "Title";
     this.labelTitle.TextAlign    = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // buttonSetWallpaper
     //
     this.buttonSetWallpaper.BackColor = System.Drawing.SystemColors.Control;
     this.buttonSetWallpaper.FlatAppearance.BorderSize = 0;
     this.buttonSetWallpaper.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.buttonSetWallpaper.Font      = new System.Drawing.Font("Segoe UI Semibold", 8.830189F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonSetWallpaper.ForeColor = System.Drawing.Color.Black;
     this.buttonSetWallpaper.Location  = new System.Drawing.Point(102, 382);
     this.buttonSetWallpaper.Margin    = new System.Windows.Forms.Padding(4);
     this.buttonSetWallpaper.Name      = "buttonSetWallpaper";
     this.buttonSetWallpaper.Size      = new System.Drawing.Size(299, 43);
     this.buttonSetWallpaper.TabIndex  = 1;
     this.buttonSetWallpaper.Text      = "Set as Wallpaper";
     this.buttonSetWallpaper.UseVisualStyleBackColor = false;
     this.buttonSetWallpaper.Click += new System.EventHandler(this.buttonSetWallpaper_Click);
     //
     // buttonNext
     //
     this.buttonNext.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(12)))), ((int)(((byte)(132)))), ((int)(((byte)(132)))));
     this.buttonNext.FlatAppearance.BorderSize = 0;
     this.buttonNext.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.buttonNext.Font      = new System.Drawing.Font("Segoe UI Semibold", 8.830189F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonNext.ForeColor = System.Drawing.Color.White;
     this.buttonNext.Location  = new System.Drawing.Point(412, 382);
     this.buttonNext.Margin    = new System.Windows.Forms.Padding(4);
     this.buttonNext.Name      = "buttonNext";
     this.buttonNext.Size      = new System.Drawing.Size(81, 43);
     this.buttonNext.TabIndex  = 1;
     this.buttonNext.Text      = "Next";
     this.buttonNext.UseVisualStyleBackColor = false;
     this.buttonNext.Click += new System.EventHandler(this.buttonNext_Click);
     //
     // buttonPrevious
     //
     this.buttonPrevious.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(12)))), ((int)(((byte)(132)))), ((int)(((byte)(132)))));
     this.buttonPrevious.FlatAppearance.BorderSize = 0;
     this.buttonPrevious.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.buttonPrevious.Font      = new System.Drawing.Font("Segoe UI Semibold", 8.830189F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonPrevious.ForeColor = System.Drawing.Color.White;
     this.buttonPrevious.Location  = new System.Drawing.Point(13, 382);
     this.buttonPrevious.Margin    = new System.Windows.Forms.Padding(4);
     this.buttonPrevious.Name      = "buttonPrevious";
     this.buttonPrevious.Size      = new System.Drawing.Size(81, 43);
     this.buttonPrevious.TabIndex  = 1;
     this.buttonPrevious.Text      = "Previous";
     this.buttonPrevious.UseVisualStyleBackColor = false;
     this.buttonPrevious.Click += new System.EventHandler(this.buttonPrevious_Click);
     //
     // pictureBox
     //
     this.pictureBox.BackColor            = System.Drawing.Color.FromArgb(((int)(((byte)(45)))), ((int)(((byte)(45)))), ((int)(((byte)(45)))));
     this.pictureBox.Location             = new System.Drawing.Point(13, 104);
     this.pictureBox.Margin               = new System.Windows.Forms.Padding(4);
     this.pictureBox.Name                 = "pictureBox";
     this.pictureBox.Size                 = new System.Drawing.Size(480, 270);
     this.pictureBox.SizeMode             = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.pictureBox.TabIndex             = 0;
     this.pictureBox.TabStop              = false;
     this.pictureBox.LoadCompleted       += new System.ComponentModel.AsyncCompletedEventHandler(this.pictureBox_LoadCompleted);
     this.pictureBox.LoadProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.pictureBox_LoadProgressChanged);
     //
     // menuStrip
     //
     this.menuStrip.ImageScalingSize = new System.Drawing.Size(18, 18);
     this.menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.fileToolStripMenuItem,
         this.toolsToolStripMenuItem,
         this.helpToolStripMenuItem
     });
     this.menuStrip.Location = new System.Drawing.Point(0, 0);
     this.menuStrip.Name     = "menuStrip";
     this.menuStrip.Size     = new System.Drawing.Size(509, 28);
     this.menuStrip.TabIndex = 5;
     this.menuStrip.Text     = "menuStrip1";
     //
     // fileToolStripMenuItem
     //
     this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripMenuItemFileExit
     });
     this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
     this.fileToolStripMenuItem.Size = new System.Drawing.Size(44, 24);
     this.fileToolStripMenuItem.Text = "&File";
     //
     // toolStripMenuItemFileExit
     //
     this.toolStripMenuItemFileExit.Name   = "toolStripMenuItemFileExit";
     this.toolStripMenuItemFileExit.Size   = new System.Drawing.Size(108, 26);
     this.toolStripMenuItemFileExit.Text   = "&Exit";
     this.toolStripMenuItemFileExit.Click += new System.EventHandler(this.toolStripMenuItemExit_Click);
     //
     // toolsToolStripMenuItem
     //
     this.toolsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.optionsToolStripMenuItem
     });
     this.toolsToolStripMenuItem.Name = "toolsToolStripMenuItem";
     this.toolsToolStripMenuItem.Size = new System.Drawing.Size(56, 24);
     this.toolsToolStripMenuItem.Text = "&Tools";
     //
     // optionsToolStripMenuItem
     //
     this.optionsToolStripMenuItem.Name   = "optionsToolStripMenuItem";
     this.optionsToolStripMenuItem.Size   = new System.Drawing.Size(136, 26);
     this.optionsToolStripMenuItem.Text   = "&Options";
     this.optionsToolStripMenuItem.Click += new System.EventHandler(this.optionsToolStripMenuItem_Click);
     //
     // helpToolStripMenuItem
     //
     this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.aboutToolStripMenuItem
     });
     this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
     this.helpToolStripMenuItem.Size = new System.Drawing.Size(53, 24);
     this.helpToolStripMenuItem.Text = "&Help";
     //
     // aboutToolStripMenuItem
     //
     this.aboutToolStripMenuItem.Name   = "aboutToolStripMenuItem";
     this.aboutToolStripMenuItem.Size   = new System.Drawing.Size(134, 26);
     this.aboutToolStripMenuItem.Text   = "&About...";
     this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click);
     //
     // timer
     //
     this.timer.Enabled  = true;
     this.timer.Interval = 3600000;
     this.timer.Tick    += new System.EventHandler(this.timer_Tick);
     //
     // progressBar
     //
     this.progressBar.Location = new System.Drawing.Point(102, 226);
     this.progressBar.Name     = "progressBar";
     this.progressBar.Size     = new System.Drawing.Size(299, 23);
     this.progressBar.TabIndex = 6;
     this.progressBar.Visible  = false;
     //
     // FormMain
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(51)))), ((int)(((byte)(51)))));
     this.ClientSize          = new System.Drawing.Size(509, 438);
     this.Controls.Add(this.progressBar);
     this.Controls.Add(this.labelCopyright);
     this.Controls.Add(this.menuStrip);
     this.Controls.Add(this.labelTitle);
     this.Controls.Add(this.buttonSetWallpaper);
     this.Controls.Add(this.pictureBox);
     this.Controls.Add(this.buttonNext);
     this.Controls.Add(this.buttonPrevious);
     this.Font            = new System.Drawing.Font("Segoe UI", 8.830189F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MainMenuStrip   = this.menuStrip;
     this.Margin          = new System.Windows.Forms.Padding(4);
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "FormMain";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.Manual;
     this.Text            = "Bing Wallpaper";
     this.FormClosing    += new System.Windows.Forms.FormClosingEventHandler(this.FormMain_FormClosing);
     this.Shown          += new System.EventHandler(this.FormMain_Shown);
     contextMenuStrip.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit();
     this.menuStrip.ResumeLayout(false);
     this.menuStrip.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <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.Windows.Forms.ContextMenuStrip          contextMenuStrip;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainScreen));
     this.showLastMgToolStripMenuItem       = new System.Windows.Forms.ToolStripMenuItem();
     this.toolbarToolStripMenuItem          = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator3               = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripMenuItem1                = new System.Windows.Forms.ToolStripMenuItem();
     this.placeCallToolStripMenuItem        = new System.Windows.Forms.ToolStripMenuItem();
     this.endCallToolStripMenuItem          = new System.Windows.Forms.ToolStripMenuItem();
     this.speakerphoneToolStripMenuItem     = new System.Windows.Forms.ToolStripMenuItem();
     this.volumeToolStripMenuItem           = new System.Windows.Forms.ToolStripMenuItem();
     this.volumeToolStripMenuItem1          = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem2                = new System.Windows.Forms.ToolStripMenuItem();
     this.keyboardToolStripMenuItem         = new System.Windows.Forms.ToolStripMenuItem();
     this.screenShotToolStripMenuItem       = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem3                = new System.Windows.Forms.ToolStripMenuItem();
     this.sendToBlackBerryToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.sendToPCToolStripMenuItem         = new System.Windows.Forms.ToolStripMenuItem();
     this.runMacroToolStripMenuItem         = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem4                = new System.Windows.Forms.ToolStripMenuItem();
     this.contactsToolStripMenuItem         = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator2               = new System.Windows.Forms.ToolStripSeparator();
     this.pauseMessagesToolStripMenuItem    = new System.Windows.Forms.ToolStripMenuItem();
     this.connectMenuItem                  = new System.Windows.Forms.ToolStripMenuItem();
     this.disconnectMenuItem               = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator4              = new System.Windows.Forms.ToolStripSeparator();
     this.menuStrip                        = new System.Windows.Forms.MenuStrip();
     this.fileToolStripMenuItem            = new System.Windows.Forms.ToolStripMenuItem();
     this.phoneToolStripMenuItem           = new System.Windows.Forms.ToolStripMenuItem();
     this.sendSMSToolStripMenuItem         = new System.Windows.Forms.ToolStripMenuItem();
     this.screenCaptureToolStripMenuItem   = new System.Windows.Forms.ToolStripMenuItem();
     this.clipboardToolStripMenuItem       = new System.Windows.Forms.ToolStripMenuItem();
     this.buzzToolStripMenuItem            = new System.Windows.Forms.ToolStripMenuItem();
     this.suspendAlertsToolStripMenuItem   = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1              = new System.Windows.Forms.ToolStripSeparator();
     this.exitToolStripMenuItem            = new System.Windows.Forms.ToolStripMenuItem();
     this.toolsToolStripMenuItem           = new System.Windows.Forms.ToolStripMenuItem();
     this.showLastMessageToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.showToolbarToolStripMenuItem     = new System.Windows.Forms.ToolStripMenuItem();
     this.optionsToolStripMenuItem         = new System.Windows.Forms.ToolStripMenuItem();
     this.helpToolStripMenuItem            = new System.Windows.Forms.ToolStripMenuItem();
     this.viewHelpToolStripMenuItem        = new System.Windows.Forms.ToolStripMenuItem();
     this.aboutToolStripMenuItem           = new System.Windows.Forms.ToolStripMenuItem();
     this.blurtsIcon                       = new System.Windows.Forms.PictureBox();
     this.webBrowser                       = new System.Windows.Forms.WebBrowser();
     this.homeBtn          = new System.Windows.Forms.PictureBox();
     this.phoneBtn         = new System.Windows.Forms.PictureBox();
     this.smsBtn           = new System.Windows.Forms.PictureBox();
     this.emailBtn         = new System.Windows.Forms.PictureBox();
     this.winClipboardBtn  = new System.Windows.Forms.PictureBox();
     this.bbClipboardBtn   = new System.Windows.Forms.PictureBox();
     this.keybaordBtn      = new System.Windows.Forms.PictureBox();
     this.screenCaptureBtn = new System.Windows.Forms.PictureBox();
     this.contactsBtn      = new System.Windows.Forms.PictureBox();
     this.notifyIcon       = new System.Windows.Forms.NotifyIcon(this.components);
     this.connectTimer     = new System.Windows.Forms.Timer(this.components);
     contextMenuStrip      = new System.Windows.Forms.ContextMenuStrip(this.components);
     contextMenuStrip.SuspendLayout();
     this.menuStrip.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.blurtsIcon)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.homeBtn)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.phoneBtn)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.smsBtn)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emailBtn)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.winClipboardBtn)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bbClipboardBtn)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.keybaordBtn)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.screenCaptureBtn)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.contactsBtn)).BeginInit();
     this.SuspendLayout();
     //
     // contextMenuStrip
     //
     contextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.showLastMgToolStripMenuItem,
         this.toolbarToolStripMenuItem,
         this.toolStripSeparator3,
         this.toolStripMenuItem1,
         this.toolStripMenuItem2,
         this.keyboardToolStripMenuItem,
         this.screenShotToolStripMenuItem,
         this.toolStripMenuItem3,
         this.runMacroToolStripMenuItem,
         this.toolStripMenuItem4,
         this.contactsToolStripMenuItem,
         this.toolStripSeparator2,
         this.pauseMessagesToolStripMenuItem,
         this.connectMenuItem,
         this.disconnectMenuItem,
         this.toolStripSeparator4
     });
     contextMenuStrip.Name = "contextMenuStrip";
     contextMenuStrip.Size = new System.Drawing.Size(189, 308);
     //
     // showLastMgToolStripMenuItem
     //
     this.showLastMgToolStripMenuItem.Name   = "showLastMgToolStripMenuItem";
     this.showLastMgToolStripMenuItem.Size   = new System.Drawing.Size(188, 22);
     this.showLastMgToolStripMenuItem.Text   = "Show Last Message";
     this.showLastMgToolStripMenuItem.Click += new System.EventHandler(this.showLastMgToolStripMenuItem_Click);
     //
     // toolbarToolStripMenuItem
     //
     this.toolbarToolStripMenuItem.Name   = "toolbarToolStripMenuItem";
     this.toolbarToolStripMenuItem.Size   = new System.Drawing.Size(188, 22);
     this.toolbarToolStripMenuItem.Text   = "Toolbar";
     this.toolbarToolStripMenuItem.Click += new System.EventHandler(this.toolbarToolStripMenuItem_Click);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(185, 6);
     //
     // toolStripMenuItem1
     //
     this.toolStripMenuItem1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.placeCallToolStripMenuItem,
         this.endCallToolStripMenuItem,
         this.speakerphoneToolStripMenuItem,
         this.volumeToolStripMenuItem,
         this.volumeToolStripMenuItem1
     });
     this.toolStripMenuItem1.Name = "toolStripMenuItem1";
     this.toolStripMenuItem1.Size = new System.Drawing.Size(188, 22);
     this.toolStripMenuItem1.Text = "Phone";
     //
     // placeCallToolStripMenuItem
     //
     this.placeCallToolStripMenuItem.Name = "placeCallToolStripMenuItem";
     this.placeCallToolStripMenuItem.Size = new System.Drawing.Size(149, 22);
     this.placeCallToolStripMenuItem.Text = "Place Call";
     //
     // endCallToolStripMenuItem
     //
     this.endCallToolStripMenuItem.Name = "endCallToolStripMenuItem";
     this.endCallToolStripMenuItem.Size = new System.Drawing.Size(149, 22);
     this.endCallToolStripMenuItem.Text = "End Call";
     //
     // speakerphoneToolStripMenuItem
     //
     this.speakerphoneToolStripMenuItem.Name = "speakerphoneToolStripMenuItem";
     this.speakerphoneToolStripMenuItem.Size = new System.Drawing.Size(149, 22);
     this.speakerphoneToolStripMenuItem.Text = "Speakerphone";
     //
     // volumeToolStripMenuItem
     //
     this.volumeToolStripMenuItem.Name = "volumeToolStripMenuItem";
     this.volumeToolStripMenuItem.Size = new System.Drawing.Size(149, 22);
     this.volumeToolStripMenuItem.Text = "Volume +";
     //
     // volumeToolStripMenuItem1
     //
     this.volumeToolStripMenuItem1.Name = "volumeToolStripMenuItem1";
     this.volumeToolStripMenuItem1.Size = new System.Drawing.Size(149, 22);
     this.volumeToolStripMenuItem1.Text = "Volume -";
     //
     // toolStripMenuItem2
     //
     this.toolStripMenuItem2.Name = "toolStripMenuItem2";
     this.toolStripMenuItem2.Size = new System.Drawing.Size(188, 22);
     this.toolStripMenuItem2.Text = "Send SMS";
     //
     // keyboardToolStripMenuItem
     //
     this.keyboardToolStripMenuItem.Name    = "keyboardToolStripMenuItem";
     this.keyboardToolStripMenuItem.Size    = new System.Drawing.Size(188, 22);
     this.keyboardToolStripMenuItem.Text    = "Keyboard";
     this.keyboardToolStripMenuItem.Visible = false;
     //
     // screenShotToolStripMenuItem
     //
     this.screenShotToolStripMenuItem.Name = "screenShotToolStripMenuItem";
     this.screenShotToolStripMenuItem.Size = new System.Drawing.Size(188, 22);
     this.screenShotToolStripMenuItem.Text = "Screen Capture";
     //
     // toolStripMenuItem3
     //
     this.toolStripMenuItem3.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.sendToBlackBerryToolStripMenuItem,
         this.sendToPCToolStripMenuItem
     });
     this.toolStripMenuItem3.Name = "toolStripMenuItem3";
     this.toolStripMenuItem3.Size = new System.Drawing.Size(188, 22);
     this.toolStripMenuItem3.Text = "Clipboard";
     //
     // sendToBlackBerryToolStripMenuItem
     //
     this.sendToBlackBerryToolStripMenuItem.Name   = "sendToBlackBerryToolStripMenuItem";
     this.sendToBlackBerryToolStripMenuItem.Size   = new System.Drawing.Size(158, 22);
     this.sendToBlackBerryToolStripMenuItem.Text   = "Read BlackBerry";
     this.sendToBlackBerryToolStripMenuItem.Click += new System.EventHandler(this.sendToBlackBerryToolStripMenuItem_Click);
     //
     // sendToPCToolStripMenuItem
     //
     this.sendToPCToolStripMenuItem.Name   = "sendToPCToolStripMenuItem";
     this.sendToPCToolStripMenuItem.Size   = new System.Drawing.Size(158, 22);
     this.sendToPCToolStripMenuItem.Text   = "Send Windows";
     this.sendToPCToolStripMenuItem.Click += new System.EventHandler(this.sendToPCToolStripMenuItem_Click);
     //
     // runMacroToolStripMenuItem
     //
     this.runMacroToolStripMenuItem.Name   = "runMacroToolStripMenuItem";
     this.runMacroToolStripMenuItem.Size   = new System.Drawing.Size(188, 22);
     this.runMacroToolStripMenuItem.Text   = "Run Macro";
     this.runMacroToolStripMenuItem.Click += new System.EventHandler(this.runMacroToolStripMenuItem_Click);
     //
     // toolStripMenuItem4
     //
     this.toolStripMenuItem4.Name   = "toolStripMenuItem4";
     this.toolStripMenuItem4.Size   = new System.Drawing.Size(188, 22);
     this.toolStripMenuItem4.Text   = "Buzz";
     this.toolStripMenuItem4.Click += new System.EventHandler(this.buzzToolStripMenuItem_Click);
     //
     // contactsToolStripMenuItem
     //
     this.contactsToolStripMenuItem.Name   = "contactsToolStripMenuItem";
     this.contactsToolStripMenuItem.Size   = new System.Drawing.Size(188, 22);
     this.contactsToolStripMenuItem.Text   = "Contacts";
     this.contactsToolStripMenuItem.Click += new System.EventHandler(this.contactsToolStripMenuItem_Click_1);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(185, 6);
     //
     // pauseMessagesToolStripMenuItem
     //
     this.pauseMessagesToolStripMenuItem.Name   = "pauseMessagesToolStripMenuItem";
     this.pauseMessagesToolStripMenuItem.Size   = new System.Drawing.Size(188, 22);
     this.pauseMessagesToolStripMenuItem.Text   = "Suspend  Messages";
     this.pauseMessagesToolStripMenuItem.Click += new System.EventHandler(this.pauseMessagesToolStripMenuItem_Click);
     //
     // connectMenuItem
     //
     this.connectMenuItem.Name   = "connectMenuItem";
     this.connectMenuItem.Size   = new System.Drawing.Size(188, 22);
     this.connectMenuItem.Text   = "&Connect Bluetooth";
     this.connectMenuItem.Click += new System.EventHandler(this.connectMenuItem_Click);
     //
     // disconnectMenuItem
     //
     this.disconnectMenuItem.Name   = "disconnectMenuItem";
     this.disconnectMenuItem.Size   = new System.Drawing.Size(188, 22);
     this.disconnectMenuItem.Text   = "&Disconnect Bluetooth";
     this.disconnectMenuItem.Click += new System.EventHandler(this.disconnectMenuItem_Click);
     //
     // toolStripSeparator4
     //
     this.toolStripSeparator4.Name = "toolStripSeparator4";
     this.toolStripSeparator4.Size = new System.Drawing.Size(185, 6);
     //
     // menuStrip
     //
     this.menuStrip.AutoSize  = false;
     this.menuStrip.BackColor = System.Drawing.Color.Transparent;
     this.menuStrip.Dock      = System.Windows.Forms.DockStyle.None;
     this.menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.fileToolStripMenuItem,
         this.toolsToolStripMenuItem,
         this.helpToolStripMenuItem
     });
     this.menuStrip.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow;
     this.menuStrip.Location    = new System.Drawing.Point(64, 0);
     this.menuStrip.Name        = "menuStrip";
     this.menuStrip.RenderMode  = System.Windows.Forms.ToolStripRenderMode.Professional;
     this.menuStrip.Size        = new System.Drawing.Size(373, 24);
     this.menuStrip.TabIndex    = 0;
     //
     // fileToolStripMenuItem
     //
     this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.phoneToolStripMenuItem,
         this.sendSMSToolStripMenuItem,
         this.screenCaptureToolStripMenuItem,
         this.clipboardToolStripMenuItem,
         this.buzzToolStripMenuItem,
         this.suspendAlertsToolStripMenuItem,
         this.toolStripSeparator1,
         this.exitToolStripMenuItem
     });
     this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
     this.fileToolStripMenuItem.Size = new System.Drawing.Size(59, 20);
     this.fileToolStripMenuItem.Text = "&Actions";
     //
     // phoneToolStripMenuItem
     //
     this.phoneToolStripMenuItem.Name = "phoneToolStripMenuItem";
     this.phoneToolStripMenuItem.Size = new System.Drawing.Size(154, 22);
     this.phoneToolStripMenuItem.Text = "Phone";
     //
     // sendSMSToolStripMenuItem
     //
     this.sendSMSToolStripMenuItem.Name   = "sendSMSToolStripMenuItem";
     this.sendSMSToolStripMenuItem.Size   = new System.Drawing.Size(154, 22);
     this.sendSMSToolStripMenuItem.Text   = "Send SMS";
     this.sendSMSToolStripMenuItem.Click += new System.EventHandler(this.sendSMSToolStripMenuItem_Click);
     //
     // screenCaptureToolStripMenuItem
     //
     this.screenCaptureToolStripMenuItem.Name   = "screenCaptureToolStripMenuItem";
     this.screenCaptureToolStripMenuItem.Size   = new System.Drawing.Size(154, 22);
     this.screenCaptureToolStripMenuItem.Text   = "Screen Capture";
     this.screenCaptureToolStripMenuItem.Click += new System.EventHandler(this.screenShotToolStripMenuItem_Click);
     //
     // clipboardToolStripMenuItem
     //
     this.clipboardToolStripMenuItem.Name = "clipboardToolStripMenuItem";
     this.clipboardToolStripMenuItem.Size = new System.Drawing.Size(154, 22);
     this.clipboardToolStripMenuItem.Text = "Clipboard";
     //
     // buzzToolStripMenuItem
     //
     this.buzzToolStripMenuItem.Name   = "buzzToolStripMenuItem";
     this.buzzToolStripMenuItem.Size   = new System.Drawing.Size(154, 22);
     this.buzzToolStripMenuItem.Text   = "Buzz";
     this.buzzToolStripMenuItem.Click += new System.EventHandler(this.buzzToolStripMenuItem_Click);
     //
     // suspendAlertsToolStripMenuItem
     //
     this.suspendAlertsToolStripMenuItem.Name = "suspendAlertsToolStripMenuItem";
     this.suspendAlertsToolStripMenuItem.Size = new System.Drawing.Size(154, 22);
     this.suspendAlertsToolStripMenuItem.Text = "Suspend Alerts";
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(151, 6);
     //
     // exitToolStripMenuItem
     //
     this.exitToolStripMenuItem.Name   = "exitToolStripMenuItem";
     this.exitToolStripMenuItem.Size   = new System.Drawing.Size(154, 22);
     this.exitToolStripMenuItem.Text   = "Exit";
     this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
     //
     // toolsToolStripMenuItem
     //
     this.toolsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.showLastMessageToolStripMenuItem,
         this.showToolbarToolStripMenuItem,
         this.optionsToolStripMenuItem
     });
     this.toolsToolStripMenuItem.Name = "toolsToolStripMenuItem";
     this.toolsToolStripMenuItem.Size = new System.Drawing.Size(48, 20);
     this.toolsToolStripMenuItem.Text = "&Tools";
     //
     // showLastMessageToolStripMenuItem
     //
     this.showLastMessageToolStripMenuItem.Name   = "showLastMessageToolStripMenuItem";
     this.showLastMessageToolStripMenuItem.Size   = new System.Drawing.Size(176, 22);
     this.showLastMessageToolStripMenuItem.Text   = "Show Last Message";
     this.showLastMessageToolStripMenuItem.Click += new System.EventHandler(this.showLastMgToolStripMenuItem_Click);
     //
     // showToolbarToolStripMenuItem
     //
     this.showToolbarToolStripMenuItem.Name   = "showToolbarToolStripMenuItem";
     this.showToolbarToolStripMenuItem.Size   = new System.Drawing.Size(176, 22);
     this.showToolbarToolStripMenuItem.Text   = "Show Toolbar";
     this.showToolbarToolStripMenuItem.Click += new System.EventHandler(this.toolbarToolStripMenuItem_Click);
     //
     // optionsToolStripMenuItem
     //
     this.optionsToolStripMenuItem.Name   = "optionsToolStripMenuItem";
     this.optionsToolStripMenuItem.Size   = new System.Drawing.Size(176, 22);
     this.optionsToolStripMenuItem.Text   = "Options";
     this.optionsToolStripMenuItem.Click += new System.EventHandler(this.setupMenuItem_Click);
     //
     // helpToolStripMenuItem
     //
     this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.viewHelpToolStripMenuItem,
         this.aboutToolStripMenuItem
     });
     this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
     this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
     this.helpToolStripMenuItem.Text = "&Help";
     //
     // viewHelpToolStripMenuItem
     //
     this.viewHelpToolStripMenuItem.Name   = "viewHelpToolStripMenuItem";
     this.viewHelpToolStripMenuItem.Size   = new System.Drawing.Size(152, 22);
     this.viewHelpToolStripMenuItem.Text   = "View Help";
     this.viewHelpToolStripMenuItem.Click += new System.EventHandler(this.viewHelpToolStripMenuItem_Click);
     //
     // aboutToolStripMenuItem
     //
     this.aboutToolStripMenuItem.Name   = "aboutToolStripMenuItem";
     this.aboutToolStripMenuItem.Size   = new System.Drawing.Size(152, 22);
     this.aboutToolStripMenuItem.Text   = "About";
     this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click_1);
     //
     // blurtsIcon
     //
     this.blurtsIcon.BackColor    = System.Drawing.Color.Transparent;
     this.blurtsIcon.Image        = global::Blurts.Properties.Resources.Blurts_64x64;
     this.blurtsIcon.InitialImage = null;
     this.blurtsIcon.Location     = new System.Drawing.Point(-1, 0);
     this.blurtsIcon.Name         = "blurtsIcon";
     this.blurtsIcon.Size         = new System.Drawing.Size(64, 64);
     this.blurtsIcon.TabIndex     = 1;
     this.blurtsIcon.TabStop      = false;
     //
     // webBrowser
     //
     this.webBrowser.Location          = new System.Drawing.Point(0, 70);
     this.webBrowser.MinimumSize       = new System.Drawing.Size(20, 20);
     this.webBrowser.Name              = "webBrowser";
     this.webBrowser.ScrollBarsEnabled = false;
     this.webBrowser.Size              = new System.Drawing.Size(494, 526);
     this.webBrowser.TabIndex          = 2;
     //
     // homeBtn
     //
     this.homeBtn.BackColor = System.Drawing.Color.Transparent;
     this.homeBtn.Image     = global::Blurts.Properties.Resources.home_btn_sm;
     this.homeBtn.Location  = new System.Drawing.Point(66, 23);
     this.homeBtn.Name      = "homeBtn";
     this.homeBtn.Size      = new System.Drawing.Size(41, 41);
     this.homeBtn.SizeMode  = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
     this.homeBtn.TabIndex  = 10;
     this.homeBtn.TabStop   = false;
     this.homeBtn.Click    += new System.EventHandler(this.homeBtn_Click);
     //
     // phoneBtn
     //
     this.phoneBtn.BackColor = System.Drawing.Color.Transparent;
     this.phoneBtn.Image     = global::Blurts.Properties.Resources.phoneBtn_sm;
     this.phoneBtn.Location  = new System.Drawing.Point(102, 23);
     this.phoneBtn.Name      = "phoneBtn";
     this.phoneBtn.Size      = new System.Drawing.Size(41, 41);
     this.phoneBtn.SizeMode  = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
     this.phoneBtn.TabIndex  = 11;
     this.phoneBtn.TabStop   = false;
     this.phoneBtn.Click    += new System.EventHandler(this.phoneBtn_Click);
     //
     // smsBtn
     //
     this.smsBtn.BackColor = System.Drawing.Color.Transparent;
     this.smsBtn.Image     = global::Blurts.Properties.Resources.smsBtn_sm;
     this.smsBtn.Location  = new System.Drawing.Point(140, 23);
     this.smsBtn.Name      = "smsBtn";
     this.smsBtn.Size      = new System.Drawing.Size(41, 41);
     this.smsBtn.SizeMode  = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
     this.smsBtn.TabIndex  = 12;
     this.smsBtn.TabStop   = false;
     //
     // emailBtn
     //
     this.emailBtn.BackColor = System.Drawing.Color.Transparent;
     this.emailBtn.Image     = global::Blurts.Properties.Resources.email_btn_sm;
     this.emailBtn.Location  = new System.Drawing.Point(179, 23);
     this.emailBtn.Name      = "emailBtn";
     this.emailBtn.Size      = new System.Drawing.Size(41, 41);
     this.emailBtn.SizeMode  = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
     this.emailBtn.TabIndex  = 13;
     this.emailBtn.TabStop   = false;
     //
     // winClipboardBtn
     //
     this.winClipboardBtn.BackColor = System.Drawing.Color.Transparent;
     this.winClipboardBtn.Image     = global::Blurts.Properties.Resources.clipboardGetBtn_sm;
     this.winClipboardBtn.Location  = new System.Drawing.Point(216, 23);
     this.winClipboardBtn.Name      = "winClipboardBtn";
     this.winClipboardBtn.Size      = new System.Drawing.Size(41, 41);
     this.winClipboardBtn.SizeMode  = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
     this.winClipboardBtn.TabIndex  = 14;
     this.winClipboardBtn.TabStop   = false;
     //
     // bbClipboardBtn
     //
     this.bbClipboardBtn.BackColor = System.Drawing.Color.Transparent;
     this.bbClipboardBtn.Image     = global::Blurts.Properties.Resources.clipboardSendBtn_sm;
     this.bbClipboardBtn.Location  = new System.Drawing.Point(254, 23);
     this.bbClipboardBtn.Name      = "bbClipboardBtn";
     this.bbClipboardBtn.Size      = new System.Drawing.Size(41, 41);
     this.bbClipboardBtn.SizeMode  = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
     this.bbClipboardBtn.TabIndex  = 15;
     this.bbClipboardBtn.TabStop   = false;
     //
     // keybaordBtn
     //
     this.keybaordBtn.BackColor = System.Drawing.Color.Transparent;
     this.keybaordBtn.Image     = global::Blurts.Properties.Resources.keyboard_btn_sm;
     this.keybaordBtn.Location  = new System.Drawing.Point(293, 23);
     this.keybaordBtn.Name      = "keybaordBtn";
     this.keybaordBtn.Size      = new System.Drawing.Size(41, 41);
     this.keybaordBtn.SizeMode  = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
     this.keybaordBtn.TabIndex  = 16;
     this.keybaordBtn.TabStop   = false;
     //
     // screenCaptureBtn
     //
     this.screenCaptureBtn.BackColor = System.Drawing.Color.Transparent;
     this.screenCaptureBtn.Image     = global::Blurts.Properties.Resources.screenCaptureBtn_sm;
     this.screenCaptureBtn.Location  = new System.Drawing.Point(333, 23);
     this.screenCaptureBtn.Name      = "screenCaptureBtn";
     this.screenCaptureBtn.Size      = new System.Drawing.Size(41, 41);
     this.screenCaptureBtn.SizeMode  = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
     this.screenCaptureBtn.TabIndex  = 17;
     this.screenCaptureBtn.TabStop   = false;
     this.screenCaptureBtn.Click    += new System.EventHandler(this.screenCaptureBtn_Click);
     //
     // contactsBtn
     //
     this.contactsBtn.BackColor   = System.Drawing.Color.Transparent;
     this.contactsBtn.Image       = global::Blurts.Properties.Resources.addressbook_btn_sm;
     this.contactsBtn.Location    = new System.Drawing.Point(374, 23);
     this.contactsBtn.Name        = "contactsBtn";
     this.contactsBtn.Size        = new System.Drawing.Size(41, 41);
     this.contactsBtn.SizeMode    = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
     this.contactsBtn.TabIndex    = 18;
     this.contactsBtn.TabStop     = false;
     this.contactsBtn.MouseClick += new System.Windows.Forms.MouseEventHandler(this.contactsBtn_MouseClick);
     this.contactsBtn.MouseDown  += new System.Windows.Forms.MouseEventHandler(this.contactsBtn_MouseDown);
     this.contactsBtn.MouseUp    += new System.Windows.Forms.MouseEventHandler(this.contactsBtn_MouseUp);
     //
     // notifyIcon
     //
     this.notifyIcon.ContextMenuStrip = contextMenuStrip;
     this.notifyIcon.Icon             = ((System.Drawing.Icon)(resources.GetObject("notifyIcon.Icon")));
     this.notifyIcon.DoubleClick     += new System.EventHandler(this.notifyIcon_DoubleClick);
     //
     // connectTimer
     //
     this.connectTimer.Interval = 1000;
     this.connectTimer.Tick    += new System.EventHandler(this.connectTimer_Tick);
     //
     // MainScreen
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.Color.White;
     this.ClientSize          = new System.Drawing.Size(494, 595);
     this.Controls.Add(this.contactsBtn);
     this.Controls.Add(this.screenCaptureBtn);
     this.Controls.Add(this.keybaordBtn);
     this.Controls.Add(this.bbClipboardBtn);
     this.Controls.Add(this.winClipboardBtn);
     this.Controls.Add(this.emailBtn);
     this.Controls.Add(this.smsBtn);
     this.Controls.Add(this.phoneBtn);
     this.Controls.Add(this.homeBtn);
     this.Controls.Add(this.blurtsIcon);
     this.Controls.Add(this.menuStrip);
     this.Controls.Add(this.webBrowser);
     this.DoubleBuffered = true;
     this.Icon           = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.IsMdiContainer = true;
     this.MainMenuStrip  = this.menuStrip;
     this.MinimumSize    = new System.Drawing.Size(510, 200);
     this.Name           = "MainScreen";
     this.Text           = "Blurts";
     this.Load          += new System.EventHandler(this.MainScreen_Load);
     this.FormClosing   += new System.Windows.Forms.FormClosingEventHandler(this.MainScreen_FormClosing);
     this.Resize        += new System.EventHandler(this.MainScreen_Resize);
     contextMenuStrip.ResumeLayout(false);
     this.menuStrip.ResumeLayout(false);
     this.menuStrip.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.blurtsIcon)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.homeBtn)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.phoneBtn)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.smsBtn)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emailBtn)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.winClipboardBtn)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bbClipboardBtn)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.keybaordBtn)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.screenCaptureBtn)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.contactsBtn)).EndInit();
     this.ResumeLayout(false);
 }
Esempio n. 46
0
 /// <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.Windows.Forms.ContextMenuStrip notificationMenu;
     System.Windows.Forms.ColumnHeader     Index;
     this.exitApplication  = new System.Windows.Forms.ToolStripMenuItem();
     this.notificationIcon = new System.Windows.Forms.NotifyIcon(this.components);
     this.Log         = new System.Windows.Forms.ListView();
     notificationMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
     Index            = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     notificationMenu.SuspendLayout();
     this.SuspendLayout();
     //
     // notificationMenu
     //
     notificationMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.exitApplication
     });
     notificationMenu.Name = "notificationMenu";
     notificationMenu.Size = new System.Drawing.Size(93, 26);
     //
     // exitApplication
     //
     this.exitApplication.Name = "exitApplication";
     this.exitApplication.Size = new System.Drawing.Size(92, 22);
     this.exitApplication.Text = "E&xit";
     //
     // Index
     //
     Index.Text = "#";
     //
     // notificationIcon
     //
     this.notificationIcon.ContextMenuStrip = notificationMenu;
     this.notificationIcon.Visible          = true;
     //
     // Log
     //
     this.Log.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         Index
     });
     this.Log.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.Log.FullRowSelect = true;
     this.Log.HideSelection = false;
     this.Log.Location      = new System.Drawing.Point(0, 0);
     this.Log.MultiSelect   = false;
     this.Log.Name          = "Log";
     this.Log.Size          = new System.Drawing.Size(810, 300);
     this.Log.TabIndex      = 2;
     this.Log.UseCompatibleStateImageBehavior = false;
     this.Log.View = System.Windows.Forms.View.Details;
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(810, 300);
     this.Controls.Add(this.Log);
     this.Name        = "MainForm";
     this.Text        = "Watchr";
     this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.MainForm_FormClosed);
     notificationMenu.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Esempio n. 47
0
        /// <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.Windows.Forms.ContextMenuStrip contextMenuStrip1;
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
            this.libraryRebaseMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.histogramEntryBindingSource1 = new System.Windows.Forms.BindingSource(this.components);
            this.histogramEntryBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.textBox1 = new System.Windows.Forms.TextBox();
            this.button1 = new System.Windows.Forms.Button();
            this.regionMonitorCheckBox = new System.Windows.Forms.CheckBox();
            this.alternateResultsCheckbox = new System.Windows.Forms.CheckBox();
            this.instructionTracingCheckbox = new System.Windows.Forms.CheckBox();
            this.libraryLoadMonitoringCheckbox = new System.Windows.Forms.CheckBox();
            this.regionStartBox = new System.Windows.Forms.TextBox();
            this.regionEndBox = new System.Windows.Forms.TextBox();
            this.resultsFileBox = new System.Windows.Forms.TextBox();
            this.label1 = new System.Windows.Forms.Label();
            this.memoryPINDllPath = new System.Windows.Forms.TextBox();
            this.pinPathBox = new System.Windows.Forms.TextBox();
            this.label2 = new System.Windows.Forms.Label();
            this.label3 = new System.Windows.Forms.Label();
            this.tabContainer = new System.Windows.Forms.TabControl();
            this.tabPage1 = new System.Windows.Forms.TabPage();
            this.traceOnStartCheckbox = new System.Windows.Forms.CheckBox();
            this.tabPage2 = new System.Windows.Forms.TabPage();
            this.snapshotStatusLabel = new System.Windows.Forms.Label();
            this.tracingStatusLabel = new System.Windows.Forms.Label();
            this.startManualTracingButton = new System.Windows.Forms.Button();
            this.snapshotButton = new System.Windows.Forms.Button();
            this.tabPage3 = new System.Windows.Forms.TabPage();
            this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
            this.loadedLibraryList = new System.Windows.Forms.ListBox();
            this.librariesBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.processInstructionFileButton = new System.Windows.Forms.Button();
            this.resultsGridView = new System.Windows.Forms.DataGridView();
            this.instructionnumberDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.addressDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.SystemCallName = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Depth = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.threadidDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.timeDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.LibraryName = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.instructionBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.loadedThreadList = new System.Windows.Forms.ListBox();
            this.threadBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.lowDepthTextBox = new System.Windows.Forms.TextBox();
            this.highDepthTextBox = new System.Windows.Forms.TextBox();
            this.tabPage4 = new System.Windows.Forms.TabPage();
            this.histogramDataView = new System.Windows.Forms.DataGridView();
            this.addressDataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.countDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.histogramBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.timer1 = new System.Windows.Forms.Timer(this.components);
            contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
            contextMenuStrip1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.histogramEntryBindingSource1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.histogramEntryBindingSource)).BeginInit();
            this.tabContainer.SuspendLayout();
            this.tabPage1.SuspendLayout();
            this.tabPage2.SuspendLayout();
            this.tabPage3.SuspendLayout();
            this.tableLayoutPanel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.librariesBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.resultsGridView)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.instructionBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.threadBindingSource)).BeginInit();
            this.tabPage4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.histogramDataView)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.histogramBindingSource)).BeginInit();
            this.SuspendLayout();
            // 
            // contextMenuStrip1
            // 
            contextMenuStrip1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
            contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.libraryRebaseMenuItem});
            contextMenuStrip1.Name = "contextMenuStrip1";
            contextMenuStrip1.ShowImageMargin = false;
            contextMenuStrip1.Size = new System.Drawing.Size(128, 48);
            // 
            // libraryRebaseMenuItem
            // 
            this.libraryRebaseMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
            this.libraryRebaseMenuItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
            this.libraryRebaseMenuItem.Name = "libraryRebaseMenuItem";
            this.libraryRebaseMenuItem.Size = new System.Drawing.Size(127, 22);
            this.libraryRebaseMenuItem.Text = "Library Rebase";
            this.libraryRebaseMenuItem.Click += new System.EventHandler(this.toolStripMenuItem1_Click);
            // 
            // histogramEntryBindingSource1
            // 
            this.histogramEntryBindingSource1.DataSource = typeof(MemoryPINGui.HistogramEntry);
            // 
            // textBox1
            // 
            this.textBox1.AllowDrop = true;
            this.textBox1.Location = new System.Drawing.Point(13, 12);
            this.textBox1.Name = "textBox1";
            this.textBox1.Size = new System.Drawing.Size(306, 20);
            this.textBox1.TabIndex = 0;
            this.textBox1.DragDrop += new System.Windows.Forms.DragEventHandler(this.textBox1_DragDrop);
            this.textBox1.DragEnter += new System.Windows.Forms.DragEventHandler(this.textBox1_DragEnter);
            // 
            // button1
            // 
            this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.button1.AutoSize = true;
            this.button1.Location = new System.Drawing.Point(6, 325);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(947, 23);
            this.button1.TabIndex = 12;
            this.button1.Text = "Execute PIN tool";
            this.button1.UseVisualStyleBackColor = true;
            this.button1.Click += new System.EventHandler(this.button1_Click);
            // 
            // regionMonitorCheckBox
            // 
            this.regionMonitorCheckBox.AutoSize = true;
            this.regionMonitorCheckBox.Location = new System.Drawing.Point(13, 101);
            this.regionMonitorCheckBox.Name = "regionMonitorCheckBox";
            this.regionMonitorCheckBox.Size = new System.Drawing.Size(112, 17);
            this.regionMonitorCheckBox.TabIndex = 3;
            this.regionMonitorCheckBox.Text = "Region Monitoring";
            this.regionMonitorCheckBox.UseVisualStyleBackColor = true;
            this.regionMonitorCheckBox.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);
            // 
            // alternateResultsCheckbox
            // 
            this.alternateResultsCheckbox.AutoSize = true;
            this.alternateResultsCheckbox.Location = new System.Drawing.Point(13, 128);
            this.alternateResultsCheckbox.Name = "alternateResultsCheckbox";
            this.alternateResultsCheckbox.Size = new System.Drawing.Size(125, 17);
            this.alternateResultsCheckbox.TabIndex = 6;
            this.alternateResultsCheckbox.Text = "Alternate Results File";
            this.alternateResultsCheckbox.UseVisualStyleBackColor = true;
            this.alternateResultsCheckbox.CheckedChanged += new System.EventHandler(this.checkBox2_CheckedChanged);
            // 
            // instructionTracingCheckbox
            // 
            this.instructionTracingCheckbox.AutoSize = true;
            this.instructionTracingCheckbox.Location = new System.Drawing.Point(13, 153);
            this.instructionTracingCheckbox.Name = "instructionTracingCheckbox";
            this.instructionTracingCheckbox.Size = new System.Drawing.Size(114, 17);
            this.instructionTracingCheckbox.TabIndex = 8;
            this.instructionTracingCheckbox.Text = "Instruction Tracing";
            this.instructionTracingCheckbox.UseVisualStyleBackColor = true;
            this.instructionTracingCheckbox.CheckedChanged += new System.EventHandler(this.instructionTracingCheckbox_CheckedChanged);
            // 
            // libraryLoadMonitoringCheckbox
            // 
            this.libraryLoadMonitoringCheckbox.AutoSize = true;
            this.libraryLoadMonitoringCheckbox.Location = new System.Drawing.Point(13, 176);
            this.libraryLoadMonitoringCheckbox.Name = "libraryLoadMonitoringCheckbox";
            this.libraryLoadMonitoringCheckbox.Size = new System.Drawing.Size(136, 17);
            this.libraryLoadMonitoringCheckbox.TabIndex = 11;
            this.libraryLoadMonitoringCheckbox.Text = "Library Load Monitoring";
            this.libraryLoadMonitoringCheckbox.UseVisualStyleBackColor = true;
            // 
            // regionStartBox
            // 
            this.regionStartBox.Enabled = false;
            this.regionStartBox.Location = new System.Drawing.Point(150, 98);
            this.regionStartBox.Name = "regionStartBox";
            this.regionStartBox.Size = new System.Drawing.Size(175, 20);
            this.regionStartBox.TabIndex = 4;
            // 
            // regionEndBox
            // 
            this.regionEndBox.Enabled = false;
            this.regionEndBox.Location = new System.Drawing.Point(331, 98);
            this.regionEndBox.Name = "regionEndBox";
            this.regionEndBox.Size = new System.Drawing.Size(175, 20);
            this.regionEndBox.TabIndex = 5;
            // 
            // resultsFileBox
            // 
            this.resultsFileBox.Enabled = false;
            this.resultsFileBox.Location = new System.Drawing.Point(150, 125);
            this.resultsFileBox.Name = "resultsFileBox";
            this.resultsFileBox.Size = new System.Drawing.Size(356, 20);
            this.resultsFileBox.TabIndex = 7;
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(325, 13);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(124, 13);
            this.label1.TabIndex = 6;
            this.label1.Text = "Executable to Instrument";
            // 
            // memoryPINDllPath
            // 
            this.memoryPINDllPath.AllowDrop = true;
            this.memoryPINDllPath.Location = new System.Drawing.Point(13, 38);
            this.memoryPINDllPath.Name = "memoryPINDllPath";
            this.memoryPINDllPath.Size = new System.Drawing.Size(306, 20);
            this.memoryPINDllPath.TabIndex = 1;
            this.memoryPINDllPath.DragDrop += new System.Windows.Forms.DragEventHandler(this.memorypinBox_DragDrop);
            this.memoryPINDllPath.DragEnter += new System.Windows.Forms.DragEventHandler(this.memorypinBox_DragEnter);
            // 
            // pinPathBox
            // 
            this.pinPathBox.AllowDrop = true;
            this.pinPathBox.Location = new System.Drawing.Point(13, 64);
            this.pinPathBox.Name = "pinPathBox";
            this.pinPathBox.Size = new System.Drawing.Size(306, 20);
            this.pinPathBox.TabIndex = 2;
            this.pinPathBox.Text = "pin";
            this.pinPathBox.DragDrop += new System.Windows.Forms.DragEventHandler(this.pinpath_DragDrop);
            this.pinPathBox.DragEnter += new System.Windows.Forms.DragEventHandler(this.pinpath_DragEnter);
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(326, 38);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(85, 13);
            this.label2.TabIndex = 7;
            this.label2.Text = "MemoryPIN DLL";
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(328, 64);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(104, 13);
            this.label3.TabIndex = 8;
            this.label3.Text = "Intel PIN Executable";
            // 
            // tabContainer
            // 
            this.tabContainer.Controls.Add(this.tabPage1);
            this.tabContainer.Controls.Add(this.tabPage2);
            this.tabContainer.Controls.Add(this.tabPage3);
            this.tabContainer.Controls.Add(this.tabPage4);
            this.tabContainer.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tabContainer.Location = new System.Drawing.Point(0, 0);
            this.tabContainer.Name = "tabContainer";
            this.tabContainer.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.tabContainer.SelectedIndex = 0;
            this.tabContainer.Size = new System.Drawing.Size(1262, 392);
            this.tabContainer.TabIndex = 14;
            // 
            // tabPage1
            // 
            this.tabPage1.Controls.Add(this.traceOnStartCheckbox);
            this.tabPage1.Controls.Add(this.textBox1);
            this.tabPage1.Controls.Add(this.button1);
            this.tabPage1.Controls.Add(this.memoryPINDllPath);
            this.tabPage1.Controls.Add(this.label3);
            this.tabPage1.Controls.Add(this.pinPathBox);
            this.tabPage1.Controls.Add(this.label2);
            this.tabPage1.Controls.Add(this.regionMonitorCheckBox);
            this.tabPage1.Controls.Add(this.label1);
            this.tabPage1.Controls.Add(this.alternateResultsCheckbox);
            this.tabPage1.Controls.Add(this.resultsFileBox);
            this.tabPage1.Controls.Add(this.instructionTracingCheckbox);
            this.tabPage1.Controls.Add(this.regionEndBox);
            this.tabPage1.Controls.Add(this.libraryLoadMonitoringCheckbox);
            this.tabPage1.Controls.Add(this.regionStartBox);
            this.tabPage1.Location = new System.Drawing.Point(4, 22);
            this.tabPage1.Name = "tabPage1";
            this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
            this.tabPage1.Size = new System.Drawing.Size(1254, 366);
            this.tabPage1.TabIndex = 0;
            this.tabPage1.Text = "Configuration Page";
            this.tabPage1.UseVisualStyleBackColor = true;
            // 
            // traceOnStartCheckbox
            // 
            this.traceOnStartCheckbox.AutoSize = true;
            this.traceOnStartCheckbox.Location = new System.Drawing.Point(150, 153);
            this.traceOnStartCheckbox.Name = "traceOnStartCheckbox";
            this.traceOnStartCheckbox.Size = new System.Drawing.Size(190, 17);
            this.traceOnStartCheckbox.TabIndex = 13;
            this.traceOnStartCheckbox.Text = "Enable Instruction Tracing on Start";
            this.traceOnStartCheckbox.UseVisualStyleBackColor = true;
            // 
            // tabPage2
            // 
            this.tabPage2.Controls.Add(this.snapshotStatusLabel);
            this.tabPage2.Controls.Add(this.tracingStatusLabel);
            this.tabPage2.Controls.Add(this.startManualTracingButton);
            this.tabPage2.Controls.Add(this.snapshotButton);
            this.tabPage2.Location = new System.Drawing.Point(4, 22);
            this.tabPage2.Name = "tabPage2";
            this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
            this.tabPage2.Size = new System.Drawing.Size(1254, 366);
            this.tabPage2.TabIndex = 1;
            this.tabPage2.Text = "Control Page";
            this.tabPage2.UseVisualStyleBackColor = true;
            // 
            // snapshotStatusLabel
            // 
            this.snapshotStatusLabel.AutoSize = true;
            this.snapshotStatusLabel.Location = new System.Drawing.Point(179, 40);
            this.snapshotStatusLabel.Name = "snapshotStatusLabel";
            this.snapshotStatusLabel.Size = new System.Drawing.Size(91, 13);
            this.snapshotStatusLabel.TabIndex = 17;
            this.snapshotStatusLabel.Text = "Snapshot Status: ";
            this.snapshotStatusLabel.Paint += new System.Windows.Forms.PaintEventHandler(this.snapshotStatusLabel_Paint);
            // 
            // tracingStatusLabel
            // 
            this.tracingStatusLabel.AutoSize = true;
            this.tracingStatusLabel.Location = new System.Drawing.Point(179, 11);
            this.tracingStatusLabel.Name = "tracingStatusLabel";
            this.tracingStatusLabel.Size = new System.Drawing.Size(82, 13);
            this.tracingStatusLabel.TabIndex = 16;
            this.tracingStatusLabel.Text = "Tracing Status: ";
            this.tracingStatusLabel.Paint += new System.Windows.Forms.PaintEventHandler(this.tracingStatusLabel_Paint);
            // 
            // startManualTracingButton
            // 
            this.startManualTracingButton.Location = new System.Drawing.Point(3, 6);
            this.startManualTracingButton.Name = "startManualTracingButton";
            this.startManualTracingButton.Size = new System.Drawing.Size(170, 23);
            this.startManualTracingButton.TabIndex = 15;
            this.startManualTracingButton.Text = "Enable Tracing";
            this.startManualTracingButton.UseVisualStyleBackColor = true;
            this.startManualTracingButton.Click += new System.EventHandler(this.startManualTracingButton_Click);
            // 
            // snapshotButton
            // 
            this.snapshotButton.Location = new System.Drawing.Point(3, 35);
            this.snapshotButton.Name = "snapshotButton";
            this.snapshotButton.Size = new System.Drawing.Size(170, 23);
            this.snapshotButton.TabIndex = 14;
            this.snapshotButton.Text = "Signal Snapshot";
            this.snapshotButton.UseVisualStyleBackColor = true;
            this.snapshotButton.Click += new System.EventHandler(this.snapshotButton_Click_1);
            // 
            // tabPage3
            // 
            this.tabPage3.Controls.Add(this.tableLayoutPanel1);
            this.tabPage3.Location = new System.Drawing.Point(4, 22);
            this.tabPage3.Name = "tabPage3";
            this.tabPage3.Padding = new System.Windows.Forms.Padding(3);
            this.tabPage3.Size = new System.Drawing.Size(1254, 366);
            this.tabPage3.TabIndex = 2;
            this.tabPage3.Text = "Results Page";
            this.tabPage3.UseVisualStyleBackColor = true;
            this.tabPage3.Enter += new System.EventHandler(this.resultsPageActive);
            this.tabPage3.Leave += new System.EventHandler(this.resultsPageInactive);
            // 
            // tableLayoutPanel1
            // 
            this.tableLayoutPanel1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.tableLayoutPanel1.ColumnCount = 3;
            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 42.11538F));
            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 29.00641F));
            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 28.92628F));
            this.tableLayoutPanel1.Controls.Add(this.loadedLibraryList, 1, 1);
            this.tableLayoutPanel1.Controls.Add(this.processInstructionFileButton, 0, 0);
            this.tableLayoutPanel1.Controls.Add(this.resultsGridView, 0, 1);
            this.tableLayoutPanel1.Controls.Add(this.loadedThreadList, 1, 2);
            this.tableLayoutPanel1.Controls.Add(this.lowDepthTextBox, 1, 0);
            this.tableLayoutPanel1.Controls.Add(this.highDepthTextBox, 2, 0);
            this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tableLayoutPanel1.Location = new System.Drawing.Point(3, 3);
            this.tableLayoutPanel1.Name = "tableLayoutPanel1";
            this.tableLayoutPanel1.RowCount = 3;
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 33F));
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
            this.tableLayoutPanel1.Size = new System.Drawing.Size(1248, 360);
            this.tableLayoutPanel1.TabIndex = 3;
            // 
            // loadedLibraryList
            // 
            this.tableLayoutPanel1.SetColumnSpan(this.loadedLibraryList, 2);
            this.loadedLibraryList.ContextMenuStrip = contextMenuStrip1;
            this.loadedLibraryList.DataSource = this.librariesBindingSource;
            this.loadedLibraryList.Dock = System.Windows.Forms.DockStyle.Fill;
            this.loadedLibraryList.FormattingEnabled = true;
            this.loadedLibraryList.Location = new System.Drawing.Point(528, 36);
            this.loadedLibraryList.Name = "loadedLibraryList";
            this.loadedLibraryList.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
            this.loadedLibraryList.Size = new System.Drawing.Size(717, 157);
            this.loadedLibraryList.TabIndex = 2;
            this.loadedLibraryList.SelectedValueChanged += new System.EventHandler(this.loadedLibraryList_SelectedValueChanged);
            // 
            // librariesBindingSource
            // 
            this.librariesBindingSource.DataSource = typeof(MemoryPINGui.LibraryResultsProcessor);
            // 
            // processInstructionFileButton
            // 
            this.processInstructionFileButton.Location = new System.Drawing.Point(3, 3);
            this.processInstructionFileButton.Name = "processInstructionFileButton";
            this.processInstructionFileButton.Size = new System.Drawing.Size(170, 23);
            this.processInstructionFileButton.TabIndex = 2;
            this.processInstructionFileButton.Text = "Process Instruction File";
            this.processInstructionFileButton.UseVisualStyleBackColor = true;
            this.processInstructionFileButton.Click += new System.EventHandler(this.processInstructionFileButton_Click);
            // 
            // resultsGridView
            // 
            this.resultsGridView.AllowUserToAddRows = false;
            this.resultsGridView.AllowUserToDeleteRows = false;
            this.resultsGridView.AutoGenerateColumns = false;
            this.resultsGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.resultsGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.instructionnumberDataGridViewTextBoxColumn,
            this.addressDataGridViewTextBoxColumn,
            this.SystemCallName,
            this.Depth,
            this.threadidDataGridViewTextBoxColumn,
            this.timeDataGridViewTextBoxColumn,
            this.LibraryName});
            this.resultsGridView.DataSource = this.instructionBindingSource;
            this.resultsGridView.Dock = System.Windows.Forms.DockStyle.Fill;
            this.resultsGridView.EditMode = System.Windows.Forms.DataGridViewEditMode.EditProgrammatically;
            this.resultsGridView.Location = new System.Drawing.Point(3, 36);
            this.resultsGridView.Name = "resultsGridView";
            this.resultsGridView.ReadOnly = true;
            this.resultsGridView.RowHeadersVisible = false;
            this.tableLayoutPanel1.SetRowSpan(this.resultsGridView, 2);
            this.resultsGridView.Size = new System.Drawing.Size(519, 321);
            this.resultsGridView.TabIndex = 3;
            this.resultsGridView.DataSourceChanged += new System.EventHandler(this.resultsGridView_DataSourceChanged);
            // 
            // instructionnumberDataGridViewTextBoxColumn
            // 
            this.instructionnumberDataGridViewTextBoxColumn.DataPropertyName = "Instructionnumber";
            this.instructionnumberDataGridViewTextBoxColumn.HeaderText = "Instructionnumber";
            this.instructionnumberDataGridViewTextBoxColumn.Name = "instructionnumberDataGridViewTextBoxColumn";
            this.instructionnumberDataGridViewTextBoxColumn.ReadOnly = true;
            // 
            // addressDataGridViewTextBoxColumn
            // 
            this.addressDataGridViewTextBoxColumn.DataPropertyName = "Address";
            dataGridViewCellStyle1.Format = "X08";
            dataGridViewCellStyle1.NullValue = "0";
            this.addressDataGridViewTextBoxColumn.DefaultCellStyle = dataGridViewCellStyle1;
            this.addressDataGridViewTextBoxColumn.HeaderText = "Address";
            this.addressDataGridViewTextBoxColumn.Name = "addressDataGridViewTextBoxColumn";
            this.addressDataGridViewTextBoxColumn.ReadOnly = true;
            // 
            // SystemCallName
            // 
            this.SystemCallName.DataPropertyName = "SystemCallName";
            this.SystemCallName.HeaderText = "SystemCallName";
            this.SystemCallName.Name = "SystemCallName";
            this.SystemCallName.ReadOnly = true;
            // 
            // Depth
            // 
            this.Depth.DataPropertyName = "Depth";
            this.Depth.HeaderText = "Depth";
            this.Depth.Name = "Depth";
            this.Depth.ReadOnly = true;
            // 
            // threadidDataGridViewTextBoxColumn
            // 
            this.threadidDataGridViewTextBoxColumn.DataPropertyName = "Threadid";
            this.threadidDataGridViewTextBoxColumn.HeaderText = "Threadid";
            this.threadidDataGridViewTextBoxColumn.Name = "threadidDataGridViewTextBoxColumn";
            this.threadidDataGridViewTextBoxColumn.ReadOnly = true;
            // 
            // timeDataGridViewTextBoxColumn
            // 
            this.timeDataGridViewTextBoxColumn.DataPropertyName = "Time";
            this.timeDataGridViewTextBoxColumn.HeaderText = "Time";
            this.timeDataGridViewTextBoxColumn.Name = "timeDataGridViewTextBoxColumn";
            this.timeDataGridViewTextBoxColumn.ReadOnly = true;
            // 
            // LibraryName
            // 
            this.LibraryName.DataPropertyName = "LibraryName";
            this.LibraryName.HeaderText = "LibraryName";
            this.LibraryName.Name = "LibraryName";
            this.LibraryName.ReadOnly = true;
            // 
            // instructionBindingSource
            // 
            this.instructionBindingSource.DataSource = typeof(MemoryPINGui.Instruction);
            // 
            // loadedThreadList
            // 
            this.tableLayoutPanel1.SetColumnSpan(this.loadedThreadList, 2);
            this.loadedThreadList.DataSource = this.threadBindingSource;
            this.loadedThreadList.Dock = System.Windows.Forms.DockStyle.Fill;
            this.loadedThreadList.FormattingEnabled = true;
            this.loadedThreadList.Location = new System.Drawing.Point(528, 199);
            this.loadedThreadList.Name = "loadedThreadList";
            this.loadedThreadList.SelectionMode = System.Windows.Forms.SelectionMode.MultiSimple;
            this.loadedThreadList.Size = new System.Drawing.Size(717, 158);
            this.loadedThreadList.TabIndex = 4;
            this.loadedThreadList.SelectedValueChanged += new System.EventHandler(this.loadedThreadList_SelectedValueChanged);
            // 
            // lowDepthTextBox
            // 
            this.lowDepthTextBox.Location = new System.Drawing.Point(528, 3);
            this.lowDepthTextBox.Name = "lowDepthTextBox";
            this.lowDepthTextBox.Size = new System.Drawing.Size(355, 20);
            this.lowDepthTextBox.TabIndex = 5;
            this.lowDepthTextBox.Text = "Lower Instruction Depth";
            this.lowDepthTextBox.TextChanged += new System.EventHandler(this.depthFilterChanged);
            // 
            // highDepthTextBox
            // 
            this.highDepthTextBox.Location = new System.Drawing.Point(889, 3);
            this.highDepthTextBox.Name = "highDepthTextBox";
            this.highDepthTextBox.Size = new System.Drawing.Size(354, 20);
            this.highDepthTextBox.TabIndex = 6;
            this.highDepthTextBox.Text = "High Instruction Depth";
            this.highDepthTextBox.TextChanged += new System.EventHandler(this.depthFilterChanged);
            // 
            // tabPage4
            // 
            this.tabPage4.Controls.Add(this.histogramDataView);
            this.tabPage4.Location = new System.Drawing.Point(4, 22);
            this.tabPage4.Name = "tabPage4";
            this.tabPage4.Padding = new System.Windows.Forms.Padding(3);
            this.tabPage4.Size = new System.Drawing.Size(1254, 366);
            this.tabPage4.TabIndex = 3;
            this.tabPage4.Text = "Histogram";
            this.tabPage4.UseVisualStyleBackColor = true;
            this.tabPage4.Enter += new System.EventHandler(this.histogramData_Enter);
            // 
            // histogramDataView
            // 
            this.histogramDataView.AllowUserToAddRows = false;
            this.histogramDataView.AllowUserToDeleteRows = false;
            this.histogramDataView.AllowUserToOrderColumns = true;
            this.histogramDataView.AutoGenerateColumns = false;
            this.histogramDataView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.histogramDataView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.addressDataGridViewTextBoxColumn1,
            this.countDataGridViewTextBoxColumn});
            this.histogramDataView.DataSource = this.histogramEntryBindingSource1;
            this.histogramDataView.Dock = System.Windows.Forms.DockStyle.Fill;
            this.histogramDataView.Location = new System.Drawing.Point(3, 3);
            this.histogramDataView.Name = "histogramDataView";
            this.histogramDataView.ReadOnly = true;
            this.histogramDataView.Size = new System.Drawing.Size(1248, 360);
            this.histogramDataView.TabIndex = 0;
            // 
            // addressDataGridViewTextBoxColumn1
            // 
            this.addressDataGridViewTextBoxColumn1.DataPropertyName = "Address";
            this.addressDataGridViewTextBoxColumn1.HeaderText = "Address";
            this.addressDataGridViewTextBoxColumn1.Name = "addressDataGridViewTextBoxColumn1";
            this.addressDataGridViewTextBoxColumn1.ReadOnly = true;
            // 
            // countDataGridViewTextBoxColumn
            // 
            this.countDataGridViewTextBoxColumn.DataPropertyName = "Count";
            this.countDataGridViewTextBoxColumn.HeaderText = "Count";
            this.countDataGridViewTextBoxColumn.Name = "countDataGridViewTextBoxColumn";
            this.countDataGridViewTextBoxColumn.ReadOnly = true;
            // 
            // timer1
            // 
            this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
            // 
            // Form1
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1262, 392);
            this.Controls.Add(this.tabContainer);
            this.Name = "Form1";
            this.Text = "Form1";
            contextMenuStrip1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.histogramEntryBindingSource1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.histogramEntryBindingSource)).EndInit();
            this.tabContainer.ResumeLayout(false);
            this.tabPage1.ResumeLayout(false);
            this.tabPage1.PerformLayout();
            this.tabPage2.ResumeLayout(false);
            this.tabPage2.PerformLayout();
            this.tabPage3.ResumeLayout(false);
            this.tableLayoutPanel1.ResumeLayout(false);
            this.tableLayoutPanel1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.librariesBindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.resultsGridView)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.instructionBindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.threadBindingSource)).EndInit();
            this.tabPage4.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.histogramDataView)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.histogramBindingSource)).EndInit();
            this.ResumeLayout(false);

        }