diff ShortcutKeyFinder/MainForm.Designer.cs @ 0:209d9210c18f default tip

It works.
author Brad Greco <brad@bgreco.net>
date Sat, 25 Jun 2016 13:42:54 +1000
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ShortcutKeyFinder/MainForm.Designer.cs	Sat Jun 25 13:42:54 2016 +1000
@@ -0,0 +1,226 @@
+namespace ShortcutKeyFinder
+{
+    partial class MainForm
+    {
+        /// <summary>
+        /// Required designer variable.
+        /// </summary>
+        private System.ComponentModel.IContainer components = null;
+
+        /// <summary>
+        /// Clean up any resources being used.
+        /// </summary>
+        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
+        protected override void Dispose(bool disposing)
+        {
+            if (disposing && (components != null))
+            {
+                components.Dispose();
+            }
+            base.Dispose(disposing);
+        }
+
+        #region Windows Form Designer generated code
+
+        /// <summary>
+        /// Required method for Designer support - do not modify
+        /// the contents of this method with the code editor.
+        /// </summary>
+        private void InitializeComponent()
+        {
+            this.components = new System.ComponentModel.Container();
+            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
+            this.ShortcutGrid = new System.Windows.Forms.DataGridView();
+            this.ShortcutColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
+            this.HotkeyColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
+            this.LocationColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
+            this.FindShortcutWorker = new System.ComponentModel.BackgroundWorker();
+            this.panel1 = new System.Windows.Forms.Panel();
+            this.ClearButton = new System.Windows.Forms.Button();
+            this.ClearAllButton = new System.Windows.Forms.Button();
+            this.ElevateButton = new System.Windows.Forms.Button();
+            this.ShowAllCheckBox = new System.Windows.Forms.CheckBox();
+            this.InitialProgressBar = new System.Windows.Forms.ProgressBar();
+            this.MainFormToolTip = new System.Windows.Forms.ToolTip(this.components);
+            ((System.ComponentModel.ISupportInitialize)(this.ShortcutGrid)).BeginInit();
+            this.panel1.SuspendLayout();
+            this.SuspendLayout();
+            // 
+            // ShortcutGrid
+            // 
+            this.ShortcutGrid.AllowUserToAddRows = false;
+            this.ShortcutGrid.AllowUserToDeleteRows = false;
+            this.ShortcutGrid.AllowUserToResizeRows = false;
+            this.ShortcutGrid.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.ShortcutGrid.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
+            this.ShortcutGrid.ClipboardCopyMode = System.Windows.Forms.DataGridViewClipboardCopyMode.EnableWithoutHeaderText;
+            this.ShortcutGrid.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
+            this.ShortcutGrid.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
+            this.ShortcutColumn,
+            this.HotkeyColumn,
+            this.LocationColumn});
+            this.ShortcutGrid.EditMode = System.Windows.Forms.DataGridViewEditMode.EditOnF2;
+            this.ShortcutGrid.Location = new System.Drawing.Point(12, 54);
+            this.ShortcutGrid.Name = "ShortcutGrid";
+            this.ShortcutGrid.RowHeadersVisible = false;
+            this.ShortcutGrid.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
+            this.ShortcutGrid.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
+            this.ShortcutGrid.Size = new System.Drawing.Size(912, 619);
+            this.ShortcutGrid.StandardTab = true;
+            this.ShortcutGrid.TabIndex = 0;
+            this.ShortcutGrid.Visible = false;
+            this.ShortcutGrid.CellBeginEdit += new System.Windows.Forms.DataGridViewCellCancelEventHandler(this.ShortcutGrid_CellBeginEdit);
+            this.ShortcutGrid.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.ShortcutGrid_CellDoubleClick);
+            this.ShortcutGrid.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.ShortcutGrid_CellEndEdit);
+            this.ShortcutGrid.CellFormatting += new System.Windows.Forms.DataGridViewCellFormattingEventHandler(this.ShortcutGrid_CellFormatting);
+            this.ShortcutGrid.CellPainting += new System.Windows.Forms.DataGridViewCellPaintingEventHandler(this.ShortcutGrid_CellPainting);
+            this.ShortcutGrid.EditingControlShowing += new System.Windows.Forms.DataGridViewEditingControlShowingEventHandler(this.ShortcutGrid_EditingControlShowing);
+            this.ShortcutGrid.SelectionChanged += new System.EventHandler(this.ShortcutGrid_SelectionChanged);
+            this.ShortcutGrid.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ShortcutGrid_KeyDown);
+            // 
+            // ShortcutColumn
+            // 
+            this.ShortcutColumn.DataPropertyName = "Name";
+            this.ShortcutColumn.HeaderText = "Program";
+            this.ShortcutColumn.Name = "ShortcutColumn";
+            this.ShortcutColumn.ReadOnly = true;
+            // 
+            // HotkeyColumn
+            // 
+            this.HotkeyColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
+            this.HotkeyColumn.DataPropertyName = "Hotkey";
+            this.HotkeyColumn.HeaderText = "Shortcut key";
+            this.HotkeyColumn.Name = "HotkeyColumn";
+            this.HotkeyColumn.Width = 92;
+            // 
+            // LocationColumn
+            // 
+            this.LocationColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
+            this.LocationColumn.DataPropertyName = "DisplayLocation";
+            this.LocationColumn.HeaderText = "Location";
+            this.LocationColumn.Name = "LocationColumn";
+            this.LocationColumn.ReadOnly = true;
+            this.LocationColumn.Width = 73;
+            // 
+            // FindShortcutWorker
+            // 
+            this.FindShortcutWorker.DoWork += new System.ComponentModel.DoWorkEventHandler(this.FindShortcutWorker_DoWork);
+            this.FindShortcutWorker.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.FindShortcutWorker_RunWorkerCompleted);
+            // 
+            // panel1
+            // 
+            this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
+            | System.Windows.Forms.AnchorStyles.Right)));
+            this.panel1.Controls.Add(this.ClearButton);
+            this.panel1.Controls.Add(this.ClearAllButton);
+            this.panel1.Controls.Add(this.ElevateButton);
+            this.panel1.Controls.Add(this.ShowAllCheckBox);
+            this.panel1.Location = new System.Drawing.Point(12, 12);
+            this.panel1.Name = "panel1";
+            this.panel1.Size = new System.Drawing.Size(912, 36);
+            this.panel1.TabIndex = 1;
+            // 
+            // ClearButton
+            // 
+            this.ClearButton.Enabled = false;
+            this.ClearButton.Location = new System.Drawing.Point(180, 3);
+            this.ClearButton.Name = "ClearButton";
+            this.ClearButton.Size = new System.Drawing.Size(140, 30);
+            this.ClearButton.TabIndex = 2;
+            this.ClearButton.Text = "&Clear shortcut key";
+            this.ClearButton.UseVisualStyleBackColor = true;
+            this.ClearButton.Click += new System.EventHandler(this.ClearButton_Click);
+            // 
+            // ClearAllButton
+            // 
+            this.ClearAllButton.Enabled = false;
+            this.ClearAllButton.Location = new System.Drawing.Point(340, 3);
+            this.ClearAllButton.Name = "ClearAllButton";
+            this.ClearAllButton.Size = new System.Drawing.Size(140, 30);
+            this.ClearAllButton.TabIndex = 3;
+            this.ClearAllButton.Text = "C&lear all shortcut keys";
+            this.ClearAllButton.UseVisualStyleBackColor = true;
+            this.ClearAllButton.Click += new System.EventHandler(this.ClearAllButton_Click);
+            // 
+            // ElevateButton
+            // 
+            this.ElevateButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
+            this.ElevateButton.Location = new System.Drawing.Point(665, 3);
+            this.ElevateButton.Name = "ElevateButton";
+            this.ElevateButton.Size = new System.Drawing.Size(244, 30);
+            this.ElevateButton.TabIndex = 4;
+            this.ElevateButton.Text = "&Allow editing shortcuts shared by all users";
+            this.MainFormToolTip.SetToolTip(this.ElevateButton, "Shared shortcuts (in the common Start Menu and Desktop)\r\nmay only be edited by Ad" +
+        "ministrators.\r\nClick this button to relaunch this program as an Administrator.");
+            this.ElevateButton.UseVisualStyleBackColor = true;
+            this.ElevateButton.Click += new System.EventHandler(this.ElevateButton_Click);
+            // 
+            // ShowAllCheckBox
+            // 
+            this.ShowAllCheckBox.AutoSize = true;
+            this.ShowAllCheckBox.Location = new System.Drawing.Point(3, 11);
+            this.ShowAllCheckBox.Name = "ShowAllCheckBox";
+            this.ShowAllCheckBox.Size = new System.Drawing.Size(157, 17);
+            this.ShowAllCheckBox.TabIndex = 1;
+            this.ShowAllCheckBox.Text = "&Show all available programs";
+            this.MainFormToolTip.SetToolTip(this.ShowAllCheckBox, "Unchecked - Show only shortcuts with assigned hotkeys\r\nChecked - Show all shortcu" +
+        "ts to which hotkeys may be assigned");
+            this.ShowAllCheckBox.UseVisualStyleBackColor = true;
+            this.ShowAllCheckBox.CheckedChanged += new System.EventHandler(this.ShowAllCheckBox_CheckedChanged);
+            // 
+            // InitialProgressBar
+            // 
+            this.InitialProgressBar.Location = new System.Drawing.Point(312, 273);
+            this.InitialProgressBar.MarqueeAnimationSpeed = 10;
+            this.InitialProgressBar.Name = "InitialProgressBar";
+            this.InitialProgressBar.Size = new System.Drawing.Size(312, 23);
+            this.InitialProgressBar.Style = System.Windows.Forms.ProgressBarStyle.Marquee;
+            this.InitialProgressBar.TabIndex = 5;
+            // 
+            // MainFormToolTip
+            // 
+            this.MainFormToolTip.AutoPopDelay = 30000;
+            this.MainFormToolTip.InitialDelay = 500;
+            this.MainFormToolTip.ReshowDelay = 100;
+            this.MainFormToolTip.ShowAlways = true;
+            // 
+            // MainForm
+            // 
+            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+            this.ClientSize = new System.Drawing.Size(936, 685);
+            this.Controls.Add(this.InitialProgressBar);
+            this.Controls.Add(this.panel1);
+            this.Controls.Add(this.ShortcutGrid);
+            this.Cursor = System.Windows.Forms.Cursors.WaitCursor;
+            this.DoubleBuffered = true;
+            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
+            this.MinimumSize = new System.Drawing.Size(790, 38);
+            this.Name = "MainForm";
+            this.Text = "Shortcut Key Manager";
+            ((System.ComponentModel.ISupportInitialize)(this.ShortcutGrid)).EndInit();
+            this.panel1.ResumeLayout(false);
+            this.panel1.PerformLayout();
+            this.ResumeLayout(false);
+
+        }
+
+        #endregion
+
+        private System.Windows.Forms.DataGridView ShortcutGrid;
+        private System.ComponentModel.BackgroundWorker FindShortcutWorker;
+        private System.Windows.Forms.DataGridViewTextBoxColumn ShortcutColumn;
+        private System.Windows.Forms.DataGridViewTextBoxColumn HotkeyColumn;
+        private System.Windows.Forms.DataGridViewTextBoxColumn LocationColumn;
+        private System.Windows.Forms.Panel panel1;
+        private System.Windows.Forms.Button ElevateButton;
+        private System.Windows.Forms.CheckBox ShowAllCheckBox;
+        private System.Windows.Forms.Button ClearAllButton;
+        private System.Windows.Forms.Button ClearButton;
+        private System.Windows.Forms.ProgressBar InitialProgressBar;
+        private System.Windows.Forms.ToolTip MainFormToolTip;
+    }
+}
+