/// <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.DataGridViewCellStyle dataGridViewCellStyle45 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle43 = new System.Windows.Forms.DataGridViewCellStyle();
            System.ComponentModel.ComponentResourceManager resources = new SingleAssemblyComponentResourceManager(typeof(CharacterLookupForm));
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle44 = new System.Windows.Forms.DataGridViewCellStyle();
            this.gridResultDisplayer = new System.Windows.Forms.DataGridView();
            this.colCharacterCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.colCharacterGlyph = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.colCharacterName = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.pnlBottom = new System.Windows.Forms.Panel();
            this.lblShortcutAddToFavorites = new System.Windows.Forms.Label();
            this.lblShortcutCopyToClipboard = new System.Windows.Forms.Label();
            this.lblShortcutInsertCharacter = new System.Windows.Forms.Label();
            this.pnlShortcutSeparatorLine = new System.Windows.Forms.Panel();
            this.imgShortcutCopyToClipboard = new System.Windows.Forms.Panel();
            this.imgShortcutAddToFavorites = new System.Windows.Forms.Panel();
            this.imgShortcutInsertCharacterAlt = new System.Windows.Forms.Panel();
            this.imgShortcutInsertCharacter = new System.Windows.Forms.Panel();
            this.pnlSeparatorLine = new System.Windows.Forms.Panel();
            this.tmrSearchTimeout = new System.Windows.Forms.Timer(this.components);
            this.pnlBorder = new System.Windows.Forms.Panel();
            ((System.ComponentModel.ISupportInitialize)(this.gridResultDisplayer)).BeginInit();
            this.pnlBottom.SuspendLayout();
            this.pnlBorder.SuspendLayout();
            this.SuspendLayout();
            // 
            // gridResultDisplayer
            // 
            this.gridResultDisplayer.AllowUserToAddRows = false;
            this.gridResultDisplayer.AllowUserToDeleteRows = false;
            this.gridResultDisplayer.AllowUserToResizeColumns = false;
            this.gridResultDisplayer.AllowUserToResizeRows = false;
            this.gridResultDisplayer.BackgroundColor = System.Drawing.SystemColors.Window;
            this.gridResultDisplayer.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.gridResultDisplayer.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.None;
            this.gridResultDisplayer.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.gridResultDisplayer.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.colCharacterCode,
            this.colCharacterGlyph,
            this.colCharacterName});
            dataGridViewCellStyle45.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle45.BackColor = System.Drawing.SystemColors.Window;
            dataGridViewCellStyle45.Font = new System.Drawing.Font("Tahoma", 8.25F);
            dataGridViewCellStyle45.ForeColor = System.Drawing.SystemColors.ControlText;
            dataGridViewCellStyle45.SelectionBackColor = System.Drawing.Color.LightSteelBlue;
            dataGridViewCellStyle45.SelectionForeColor = System.Drawing.Color.Black;
            dataGridViewCellStyle45.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
            this.gridResultDisplayer.DefaultCellStyle = dataGridViewCellStyle45;
            resources.ApplyResources(this.gridResultDisplayer, "gridResultDisplayer");
            this.gridResultDisplayer.GridColor = System.Drawing.Color.WhiteSmoke;
            this.gridResultDisplayer.MultiSelect = false;
            this.gridResultDisplayer.Name = "gridResultDisplayer";
            this.gridResultDisplayer.RowHeadersVisible = false;
            this.gridResultDisplayer.RowTemplate.Height = 30;
            this.gridResultDisplayer.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
            this.gridResultDisplayer.VirtualMode = true;
            this.gridResultDisplayer.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.gridResultDisplayer_CellDoubleClick);
            this.gridResultDisplayer.CellValueNeeded += new System.Windows.Forms.DataGridViewCellValueEventHandler(this.gridResultDisplayer_CellValueNeeded);
            this.gridResultDisplayer.KeyDown += new System.Windows.Forms.KeyEventHandler(this.gridResultDisplayer_KeyDown);
            // 
            // colCharacterCode
            // 
            this.colCharacterCode.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
            dataGridViewCellStyle43.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
            this.colCharacterCode.DefaultCellStyle = dataGridViewCellStyle43;
            resources.ApplyResources(this.colCharacterCode, "colCharacterCode");
            this.colCharacterCode.Name = "colCharacterCode";
            this.colCharacterCode.ReadOnly = true;
            // 
            // colCharacterGlyph
            // 
            this.colCharacterGlyph.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
            dataGridViewCellStyle44.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
            dataGridViewCellStyle44.Font = new System.Drawing.Font("Arial Unicode MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
            this.colCharacterGlyph.DefaultCellStyle = dataGridViewCellStyle44;
            resources.ApplyResources(this.colCharacterGlyph, "colCharacterGlyph");
            this.colCharacterGlyph.Name = "colCharacterGlyph";
            this.colCharacterGlyph.ReadOnly = true;
            this.colCharacterGlyph.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
            // 
            // colCharacterName
            // 
            this.colCharacterName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
            resources.ApplyResources(this.colCharacterName, "colCharacterName");
            this.colCharacterName.Name = "colCharacterName";
            this.colCharacterName.ReadOnly = true;
            // 
            // pnlBottom
            // 
            this.pnlBottom.BackColor = System.Drawing.SystemColors.Control;
            this.pnlBottom.Controls.Add(this.lblShortcutAddToFavorites);
            this.pnlBottom.Controls.Add(this.lblShortcutCopyToClipboard);
            this.pnlBottom.Controls.Add(this.lblShortcutInsertCharacter);
            this.pnlBottom.Controls.Add(this.pnlShortcutSeparatorLine);
            this.pnlBottom.Controls.Add(this.imgShortcutCopyToClipboard);
            this.pnlBottom.Controls.Add(this.imgShortcutAddToFavorites);
            this.pnlBottom.Controls.Add(this.imgShortcutInsertCharacterAlt);
            this.pnlBottom.Controls.Add(this.imgShortcutInsertCharacter);
            this.pnlBottom.Controls.Add(this.pnlSeparatorLine);
            resources.ApplyResources(this.pnlBottom, "pnlBottom");
            this.pnlBottom.Name = "pnlBottom";
            // 
            // lblShortcutAddToFavorites
            // 
            resources.ApplyResources(this.lblShortcutAddToFavorites, "lblShortcutAddToFavorites");
            this.lblShortcutAddToFavorites.Name = "lblShortcutAddToFavorites";
            // 
            // lblShortcutCopyToClipboard
            // 
            resources.ApplyResources(this.lblShortcutCopyToClipboard, "lblShortcutCopyToClipboard");
            this.lblShortcutCopyToClipboard.Name = "lblShortcutCopyToClipboard";
            // 
            // lblShortcutInsertCharacter
            // 
            resources.ApplyResources(this.lblShortcutInsertCharacter, "lblShortcutInsertCharacter");
            this.lblShortcutInsertCharacter.Name = "lblShortcutInsertCharacter";
            // 
            // pnlShortcutSeparatorLine
            // 
            this.pnlShortcutSeparatorLine.BackColor = System.Drawing.Color.Silver;
            resources.ApplyResources(this.pnlShortcutSeparatorLine, "pnlShortcutSeparatorLine");
            this.pnlShortcutSeparatorLine.Name = "pnlShortcutSeparatorLine";
            // 
            // imgShortcutCopyToClipboard
            // 
            this.imgShortcutCopyToClipboard.BackColor = System.Drawing.SystemColors.Control;
            this.imgShortcutCopyToClipboard.BackgroundImage = global::YuriyGuts.UnicodeKeyboard.Properties.Resources.KeyShortcutCopyToClipboard;
            resources.ApplyResources(this.imgShortcutCopyToClipboard, "imgShortcutCopyToClipboard");
            this.imgShortcutCopyToClipboard.Name = "imgShortcutCopyToClipboard";
            // 
            // imgShortcutAddToFavorites
            // 
            this.imgShortcutAddToFavorites.BackColor = System.Drawing.SystemColors.Control;
            this.imgShortcutAddToFavorites.BackgroundImage = global::YuriyGuts.UnicodeKeyboard.Properties.Resources.KeyShortcutAddToFavorites;
            resources.ApplyResources(this.imgShortcutAddToFavorites, "imgShortcutAddToFavorites");
            this.imgShortcutAddToFavorites.Name = "imgShortcutAddToFavorites";
            // 
            // imgShortcutInsertCharacterAlt
            // 
            this.imgShortcutInsertCharacterAlt.BackColor = System.Drawing.SystemColors.Control;
            this.imgShortcutInsertCharacterAlt.BackgroundImage = global::YuriyGuts.UnicodeKeyboard.Properties.Resources.MouseShortcutInsertCharacter;
            resources.ApplyResources(this.imgShortcutInsertCharacterAlt, "imgShortcutInsertCharacterAlt");
            this.imgShortcutInsertCharacterAlt.Name = "imgShortcutInsertCharacterAlt";
            // 
            // imgShortcutInsertCharacter
            // 
            this.imgShortcutInsertCharacter.BackColor = System.Drawing.SystemColors.Control;
            this.imgShortcutInsertCharacter.BackgroundImage = global::YuriyGuts.UnicodeKeyboard.Properties.Resources.KeyShortcutInsertCharacter;
            resources.ApplyResources(this.imgShortcutInsertCharacter, "imgShortcutInsertCharacter");
            this.imgShortcutInsertCharacter.Name = "imgShortcutInsertCharacter";
            // 
            // pnlSeparatorLine
            // 
            this.pnlSeparatorLine.BackColor = System.Drawing.Color.Silver;
            resources.ApplyResources(this.pnlSeparatorLine, "pnlSeparatorLine");
            this.pnlSeparatorLine.Name = "pnlSeparatorLine";
            // 
            // tmrSearchTimeout
            // 
            this.tmrSearchTimeout.Interval = 500;
            this.tmrSearchTimeout.Tick += new System.EventHandler(this.tmrSearchTimeout_Tick);
            // 
            // pnlBorder
            // 
            this.pnlBorder.BackColor = System.Drawing.SystemColors.WindowText;
            this.pnlBorder.Controls.Add(this.gridResultDisplayer);
            this.pnlBorder.Controls.Add(this.pnlBottom);
            resources.ApplyResources(this.pnlBorder, "pnlBorder");
            this.pnlBorder.Name = "pnlBorder";
            // 
            // CharacterLookupForm
            // 
            resources.ApplyResources(this, "$this");
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.pnlBorder);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
            this.Name = "CharacterLookupForm";
            this.ShowIcon = false;
            this.ShowInTaskbar = false;
            this.Activated += new System.EventHandler(this.CharacterLookupForm_Activated);
            this.Deactivate += new System.EventHandler(this.CharacterLookupForm_Deactivate);
            this.Shown += new System.EventHandler(this.CharacterLookupForm_Shown);
            ((System.ComponentModel.ISupportInitialize)(this.gridResultDisplayer)).EndInit();
            this.pnlBottom.ResumeLayout(false);
            this.pnlBorder.ResumeLayout(false);
            this.ResumeLayout(false);

        }
コード例 #2
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 SingleAssemblyComponentResourceManager(typeof(MainForm));
            this.trayIcon = new System.Windows.Forms.NotifyIcon(this.components);
            this.cmsTrayIconMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.cmiTrayUsageHint = new System.Windows.Forms.ToolStripMenuItem();
            this.cmiTraySeparator = new System.Windows.Forms.ToolStripSeparator();
            this.cmiTrayOptions = new System.Windows.Forms.ToolStripMenuItem();
            this.cmiTrayExit = new System.Windows.Forms.ToolStripMenuItem();
            this.txtCharSearch = new System.Windows.Forms.TextBox();
            this.lblHeader = new System.Windows.Forms.Label();
            this.lblTargetWindow = new System.Windows.Forms.Label();
            this.lblTargetWindowTitle = new System.Windows.Forms.Label();
            this.tblFavoriteGlyphs = new System.Windows.Forms.TableLayoutPanel();
            this.lblFavoriteGlyph9 = new System.Windows.Forms.Label();
            this.lblFavoriteGlyph8 = new System.Windows.Forms.Label();
            this.lblFavoriteGlyph7 = new System.Windows.Forms.Label();
            this.lblFavoriteGlyph6 = new System.Windows.Forms.Label();
            this.lblFavoriteGlyph5 = new System.Windows.Forms.Label();
            this.lblFavoriteGlyph4 = new System.Windows.Forms.Label();
            this.lblFavoriteGlyph3 = new System.Windows.Forms.Label();
            this.lblFavoriteGlyph2 = new System.Windows.Forms.Label();
            this.lblFavoriteGlyph1 = new System.Windows.Forms.Label();
            this.lblFavoriteGlyph0 = new System.Windows.Forms.Label();
            this.lblFavorites = new System.Windows.Forms.Label();
            this.tblFavoriteIndexes = new System.Windows.Forms.TableLayoutPanel();
            this.lblFavoriteIndex9 = new System.Windows.Forms.Label();
            this.lblFavoriteIndex8 = new System.Windows.Forms.Label();
            this.lblFavoriteIndex7 = new System.Windows.Forms.Label();
            this.lblFavoriteIndex6 = new System.Windows.Forms.Label();
            this.lblFavoriteIndex5 = new System.Windows.Forms.Label();
            this.lblFavoriteIndex4 = new System.Windows.Forms.Label();
            this.lblFavoriteIndex3 = new System.Windows.Forms.Label();
            this.lblFavoriteIndex2 = new System.Windows.Forms.Label();
            this.lblFavoriteIndex1 = new System.Windows.Forms.Label();
            this.lblFavoriteIndex0 = new System.Windows.Forms.Label();
            this.toolTip = new System.Windows.Forms.ToolTip(this.components);
            this.btnOptions = new System.Windows.Forms.Button();
            this.cmsOptions = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.cmiOptions = new System.Windows.Forms.ToolStripMenuItem();
            this.cmiWindowsCharMap = new System.Windows.Forms.ToolStripMenuItem();
            this.cmiOptionsSeparator = new System.Windows.Forms.ToolStripSeparator();
            this.cmiAbout = new System.Windows.Forms.ToolStripMenuItem();
            this.cmiExit = new System.Windows.Forms.ToolStripMenuItem();
            this.windowFinder = new YuriyGuts.UnicodeKeyboard.UI.WindowFinder();
            this.tmrSearchPopupTimeout = new System.Windows.Forms.Timer(this.components);
            this.cmsTrayIconMenu.SuspendLayout();
            this.tblFavoriteGlyphs.SuspendLayout();
            this.tblFavoriteIndexes.SuspendLayout();
            this.cmsOptions.SuspendLayout();
            this.SuspendLayout();
            // 
            // trayIcon
            // 
            this.trayIcon.BalloonTipIcon = System.Windows.Forms.ToolTipIcon.Info;
            resources.ApplyResources(this.trayIcon, "trayIcon");
            this.trayIcon.ContextMenuStrip = this.cmsTrayIconMenu;
            // 
            // cmsTrayIconMenu
            // 
            resources.ApplyResources(this.cmsTrayIconMenu, "cmsTrayIconMenu");
            this.cmsTrayIconMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.cmiTrayUsageHint,
            this.cmiTraySeparator,
            this.cmiTrayOptions,
            this.cmiTrayExit});
            this.cmsTrayIconMenu.Name = "cmsTrayIconMenu";
            this.toolTip.SetToolTip(this.cmsTrayIconMenu, resources.GetString("cmsTrayIconMenu.ToolTip"));
            // 
            // cmiTrayUsageHint
            // 
            resources.ApplyResources(this.cmiTrayUsageHint, "cmiTrayUsageHint");
            this.cmiTrayUsageHint.Name = "cmiTrayUsageHint";
            // 
            // cmiTraySeparator
            // 
            resources.ApplyResources(this.cmiTraySeparator, "cmiTraySeparator");
            this.cmiTraySeparator.Name = "cmiTraySeparator";
            // 
            // cmiTrayOptions
            // 
            resources.ApplyResources(this.cmiTrayOptions, "cmiTrayOptions");
            this.cmiTrayOptions.Name = "cmiTrayOptions";
            this.cmiTrayOptions.Click += new System.EventHandler(this.cmiTrayOptions_Click);
            // 
            // cmiTrayExit
            // 
            resources.ApplyResources(this.cmiTrayExit, "cmiTrayExit");
            this.cmiTrayExit.Name = "cmiTrayExit";
            this.cmiTrayExit.Click += new System.EventHandler(this.cmiTrayExit_Click);
            // 
            // txtCharSearch
            // 
            resources.ApplyResources(this.txtCharSearch, "txtCharSearch");
            this.txtCharSearch.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtCharSearch.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
            this.txtCharSearch.Name = "txtCharSearch";
            this.toolTip.SetToolTip(this.txtCharSearch, resources.GetString("txtCharSearch.ToolTip"));
            this.txtCharSearch.TextChanged += new System.EventHandler(this.txtCharCode_TextChanged);
            this.txtCharSearch.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtCharCode_KeyDown);
            this.txtCharSearch.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.FormMain_PreviewKeyDown);
            // 
            // lblHeader
            // 
            resources.ApplyResources(this.lblHeader, "lblHeader");
            this.lblHeader.ForeColor = System.Drawing.SystemColors.ControlText;
            this.lblHeader.Name = "lblHeader";
            this.toolTip.SetToolTip(this.lblHeader, resources.GetString("lblHeader.ToolTip"));
            // 
            // lblTargetWindow
            // 
            resources.ApplyResources(this.lblTargetWindow, "lblTargetWindow");
            this.lblTargetWindow.Name = "lblTargetWindow";
            this.toolTip.SetToolTip(this.lblTargetWindow, resources.GetString("lblTargetWindow.ToolTip"));
            // 
            // lblTargetWindowTitle
            // 
            resources.ApplyResources(this.lblTargetWindowTitle, "lblTargetWindowTitle");
            this.lblTargetWindowTitle.AutoEllipsis = true;
            this.lblTargetWindowTitle.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.lblTargetWindowTitle.ForeColor = System.Drawing.Color.Gray;
            this.lblTargetWindowTitle.Name = "lblTargetWindowTitle";
            this.toolTip.SetToolTip(this.lblTargetWindowTitle, resources.GetString("lblTargetWindowTitle.ToolTip"));
            // 
            // tblFavoriteGlyphs
            // 
            resources.ApplyResources(this.tblFavoriteGlyphs, "tblFavoriteGlyphs");
            this.tblFavoriteGlyphs.BackColor = System.Drawing.SystemColors.Window;
            this.tblFavoriteGlyphs.Controls.Add(this.lblFavoriteGlyph9, 9, 0);
            this.tblFavoriteGlyphs.Controls.Add(this.lblFavoriteGlyph8, 8, 0);
            this.tblFavoriteGlyphs.Controls.Add(this.lblFavoriteGlyph7, 7, 0);
            this.tblFavoriteGlyphs.Controls.Add(this.lblFavoriteGlyph6, 6, 0);
            this.tblFavoriteGlyphs.Controls.Add(this.lblFavoriteGlyph5, 5, 0);
            this.tblFavoriteGlyphs.Controls.Add(this.lblFavoriteGlyph4, 4, 0);
            this.tblFavoriteGlyphs.Controls.Add(this.lblFavoriteGlyph3, 3, 0);
            this.tblFavoriteGlyphs.Controls.Add(this.lblFavoriteGlyph2, 2, 0);
            this.tblFavoriteGlyphs.Controls.Add(this.lblFavoriteGlyph1, 1, 0);
            this.tblFavoriteGlyphs.Controls.Add(this.lblFavoriteGlyph0, 0, 0);
            this.tblFavoriteGlyphs.Name = "tblFavoriteGlyphs";
            this.toolTip.SetToolTip(this.tblFavoriteGlyphs, resources.GetString("tblFavoriteGlyphs.ToolTip"));
            // 
            // lblFavoriteGlyph9
            // 
            resources.ApplyResources(this.lblFavoriteGlyph9, "lblFavoriteGlyph9");
            this.lblFavoriteGlyph9.Cursor = System.Windows.Forms.Cursors.Hand;
            this.lblFavoriteGlyph9.Name = "lblFavoriteGlyph9";
            this.toolTip.SetToolTip(this.lblFavoriteGlyph9, resources.GetString("lblFavoriteGlyph9.ToolTip"));
            this.lblFavoriteGlyph9.Click += new System.EventHandler(this.lblFavoriteGlyph_Click);
            // 
            // lblFavoriteGlyph8
            // 
            resources.ApplyResources(this.lblFavoriteGlyph8, "lblFavoriteGlyph8");
            this.lblFavoriteGlyph8.Cursor = System.Windows.Forms.Cursors.Hand;
            this.lblFavoriteGlyph8.Name = "lblFavoriteGlyph8";
            this.toolTip.SetToolTip(this.lblFavoriteGlyph8, resources.GetString("lblFavoriteGlyph8.ToolTip"));
            this.lblFavoriteGlyph8.Click += new System.EventHandler(this.lblFavoriteGlyph_Click);
            // 
            // lblFavoriteGlyph7
            // 
            resources.ApplyResources(this.lblFavoriteGlyph7, "lblFavoriteGlyph7");
            this.lblFavoriteGlyph7.Cursor = System.Windows.Forms.Cursors.Hand;
            this.lblFavoriteGlyph7.Name = "lblFavoriteGlyph7";
            this.toolTip.SetToolTip(this.lblFavoriteGlyph7, resources.GetString("lblFavoriteGlyph7.ToolTip"));
            this.lblFavoriteGlyph7.Click += new System.EventHandler(this.lblFavoriteGlyph_Click);
            // 
            // lblFavoriteGlyph6
            // 
            resources.ApplyResources(this.lblFavoriteGlyph6, "lblFavoriteGlyph6");
            this.lblFavoriteGlyph6.Cursor = System.Windows.Forms.Cursors.Hand;
            this.lblFavoriteGlyph6.Name = "lblFavoriteGlyph6";
            this.toolTip.SetToolTip(this.lblFavoriteGlyph6, resources.GetString("lblFavoriteGlyph6.ToolTip"));
            this.lblFavoriteGlyph6.Click += new System.EventHandler(this.lblFavoriteGlyph_Click);
            // 
            // lblFavoriteGlyph5
            // 
            resources.ApplyResources(this.lblFavoriteGlyph5, "lblFavoriteGlyph5");
            this.lblFavoriteGlyph5.Cursor = System.Windows.Forms.Cursors.Hand;
            this.lblFavoriteGlyph5.Name = "lblFavoriteGlyph5";
            this.toolTip.SetToolTip(this.lblFavoriteGlyph5, resources.GetString("lblFavoriteGlyph5.ToolTip"));
            this.lblFavoriteGlyph5.Click += new System.EventHandler(this.lblFavoriteGlyph_Click);
            // 
            // lblFavoriteGlyph4
            // 
            resources.ApplyResources(this.lblFavoriteGlyph4, "lblFavoriteGlyph4");
            this.lblFavoriteGlyph4.Cursor = System.Windows.Forms.Cursors.Hand;
            this.lblFavoriteGlyph4.Name = "lblFavoriteGlyph4";
            this.toolTip.SetToolTip(this.lblFavoriteGlyph4, resources.GetString("lblFavoriteGlyph4.ToolTip"));
            this.lblFavoriteGlyph4.Click += new System.EventHandler(this.lblFavoriteGlyph_Click);
            // 
            // lblFavoriteGlyph3
            // 
            resources.ApplyResources(this.lblFavoriteGlyph3, "lblFavoriteGlyph3");
            this.lblFavoriteGlyph3.Cursor = System.Windows.Forms.Cursors.Hand;
            this.lblFavoriteGlyph3.Name = "lblFavoriteGlyph3";
            this.toolTip.SetToolTip(this.lblFavoriteGlyph3, resources.GetString("lblFavoriteGlyph3.ToolTip"));
            this.lblFavoriteGlyph3.Click += new System.EventHandler(this.lblFavoriteGlyph_Click);
            // 
            // lblFavoriteGlyph2
            // 
            resources.ApplyResources(this.lblFavoriteGlyph2, "lblFavoriteGlyph2");
            this.lblFavoriteGlyph2.Cursor = System.Windows.Forms.Cursors.Hand;
            this.lblFavoriteGlyph2.Name = "lblFavoriteGlyph2";
            this.toolTip.SetToolTip(this.lblFavoriteGlyph2, resources.GetString("lblFavoriteGlyph2.ToolTip"));
            this.lblFavoriteGlyph2.Click += new System.EventHandler(this.lblFavoriteGlyph_Click);
            // 
            // lblFavoriteGlyph1
            // 
            resources.ApplyResources(this.lblFavoriteGlyph1, "lblFavoriteGlyph1");
            this.lblFavoriteGlyph1.Cursor = System.Windows.Forms.Cursors.Hand;
            this.lblFavoriteGlyph1.Name = "lblFavoriteGlyph1";
            this.toolTip.SetToolTip(this.lblFavoriteGlyph1, resources.GetString("lblFavoriteGlyph1.ToolTip"));
            this.lblFavoriteGlyph1.Click += new System.EventHandler(this.lblFavoriteGlyph_Click);
            // 
            // lblFavoriteGlyph0
            // 
            resources.ApplyResources(this.lblFavoriteGlyph0, "lblFavoriteGlyph0");
            this.lblFavoriteGlyph0.Cursor = System.Windows.Forms.Cursors.Hand;
            this.lblFavoriteGlyph0.Name = "lblFavoriteGlyph0";
            this.toolTip.SetToolTip(this.lblFavoriteGlyph0, resources.GetString("lblFavoriteGlyph0.ToolTip"));
            this.lblFavoriteGlyph0.Click += new System.EventHandler(this.lblFavoriteGlyph_Click);
            // 
            // lblFavorites
            // 
            resources.ApplyResources(this.lblFavorites, "lblFavorites");
            this.lblFavorites.AutoEllipsis = true;
            this.lblFavorites.Name = "lblFavorites";
            this.toolTip.SetToolTip(this.lblFavorites, resources.GetString("lblFavorites.ToolTip"));
            // 
            // tblFavoriteIndexes
            // 
            resources.ApplyResources(this.tblFavoriteIndexes, "tblFavoriteIndexes");
            this.tblFavoriteIndexes.Controls.Add(this.lblFavoriteIndex9, 9, 0);
            this.tblFavoriteIndexes.Controls.Add(this.lblFavoriteIndex8, 8, 0);
            this.tblFavoriteIndexes.Controls.Add(this.lblFavoriteIndex7, 7, 0);
            this.tblFavoriteIndexes.Controls.Add(this.lblFavoriteIndex6, 6, 0);
            this.tblFavoriteIndexes.Controls.Add(this.lblFavoriteIndex5, 5, 0);
            this.tblFavoriteIndexes.Controls.Add(this.lblFavoriteIndex4, 4, 0);
            this.tblFavoriteIndexes.Controls.Add(this.lblFavoriteIndex3, 3, 0);
            this.tblFavoriteIndexes.Controls.Add(this.lblFavoriteIndex2, 2, 0);
            this.tblFavoriteIndexes.Controls.Add(this.lblFavoriteIndex1, 1, 0);
            this.tblFavoriteIndexes.Controls.Add(this.lblFavoriteIndex0, 0, 0);
            this.tblFavoriteIndexes.Name = "tblFavoriteIndexes";
            this.toolTip.SetToolTip(this.tblFavoriteIndexes, resources.GetString("tblFavoriteIndexes.ToolTip"));
            // 
            // lblFavoriteIndex9
            // 
            resources.ApplyResources(this.lblFavoriteIndex9, "lblFavoriteIndex9");
            this.lblFavoriteIndex9.Name = "lblFavoriteIndex9";
            this.toolTip.SetToolTip(this.lblFavoriteIndex9, resources.GetString("lblFavoriteIndex9.ToolTip"));
            // 
            // lblFavoriteIndex8
            // 
            resources.ApplyResources(this.lblFavoriteIndex8, "lblFavoriteIndex8");
            this.lblFavoriteIndex8.Name = "lblFavoriteIndex8";
            this.toolTip.SetToolTip(this.lblFavoriteIndex8, resources.GetString("lblFavoriteIndex8.ToolTip"));
            // 
            // lblFavoriteIndex7
            // 
            resources.ApplyResources(this.lblFavoriteIndex7, "lblFavoriteIndex7");
            this.lblFavoriteIndex7.Name = "lblFavoriteIndex7";
            this.toolTip.SetToolTip(this.lblFavoriteIndex7, resources.GetString("lblFavoriteIndex7.ToolTip"));
            // 
            // lblFavoriteIndex6
            // 
            resources.ApplyResources(this.lblFavoriteIndex6, "lblFavoriteIndex6");
            this.lblFavoriteIndex6.Name = "lblFavoriteIndex6";
            this.toolTip.SetToolTip(this.lblFavoriteIndex6, resources.GetString("lblFavoriteIndex6.ToolTip"));
            // 
            // lblFavoriteIndex5
            // 
            resources.ApplyResources(this.lblFavoriteIndex5, "lblFavoriteIndex5");
            this.lblFavoriteIndex5.Name = "lblFavoriteIndex5";
            this.toolTip.SetToolTip(this.lblFavoriteIndex5, resources.GetString("lblFavoriteIndex5.ToolTip"));
            // 
            // lblFavoriteIndex4
            // 
            resources.ApplyResources(this.lblFavoriteIndex4, "lblFavoriteIndex4");
            this.lblFavoriteIndex4.Name = "lblFavoriteIndex4";
            this.toolTip.SetToolTip(this.lblFavoriteIndex4, resources.GetString("lblFavoriteIndex4.ToolTip"));
            // 
            // lblFavoriteIndex3
            // 
            resources.ApplyResources(this.lblFavoriteIndex3, "lblFavoriteIndex3");
            this.lblFavoriteIndex3.Name = "lblFavoriteIndex3";
            this.toolTip.SetToolTip(this.lblFavoriteIndex3, resources.GetString("lblFavoriteIndex3.ToolTip"));
            // 
            // lblFavoriteIndex2
            // 
            resources.ApplyResources(this.lblFavoriteIndex2, "lblFavoriteIndex2");
            this.lblFavoriteIndex2.Name = "lblFavoriteIndex2";
            this.toolTip.SetToolTip(this.lblFavoriteIndex2, resources.GetString("lblFavoriteIndex2.ToolTip"));
            // 
            // lblFavoriteIndex1
            // 
            resources.ApplyResources(this.lblFavoriteIndex1, "lblFavoriteIndex1");
            this.lblFavoriteIndex1.Name = "lblFavoriteIndex1";
            this.toolTip.SetToolTip(this.lblFavoriteIndex1, resources.GetString("lblFavoriteIndex1.ToolTip"));
            // 
            // lblFavoriteIndex0
            // 
            resources.ApplyResources(this.lblFavoriteIndex0, "lblFavoriteIndex0");
            this.lblFavoriteIndex0.Name = "lblFavoriteIndex0";
            this.toolTip.SetToolTip(this.lblFavoriteIndex0, resources.GetString("lblFavoriteIndex0.ToolTip"));
            // 
            // btnOptions
            // 
            resources.ApplyResources(this.btnOptions, "btnOptions");
            this.btnOptions.Image = global::YuriyGuts.UnicodeKeyboard.Properties.Resources.Wrench;
            this.btnOptions.Name = "btnOptions";
            this.toolTip.SetToolTip(this.btnOptions, resources.GetString("btnOptions.ToolTip"));
            this.btnOptions.UseVisualStyleBackColor = true;
            this.btnOptions.Click += new System.EventHandler(this.btnOptions_Click);
            // 
            // cmsOptions
            // 
            resources.ApplyResources(this.cmsOptions, "cmsOptions");
            this.cmsOptions.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.cmiOptions,
            this.cmiWindowsCharMap,
            this.cmiOptionsSeparator,
            this.cmiAbout,
            this.cmiExit});
            this.cmsOptions.Name = "cmsOptions";
            this.toolTip.SetToolTip(this.cmsOptions, resources.GetString("cmsOptions.ToolTip"));
            // 
            // cmiOptions
            // 
            resources.ApplyResources(this.cmiOptions, "cmiOptions");
            this.cmiOptions.Name = "cmiOptions";
            this.cmiOptions.Click += new System.EventHandler(this.cmiOptions_Click);
            // 
            // cmiWindowsCharMap
            // 
            resources.ApplyResources(this.cmiWindowsCharMap, "cmiWindowsCharMap");
            this.cmiWindowsCharMap.Name = "cmiWindowsCharMap";
            this.cmiWindowsCharMap.Click += new System.EventHandler(this.cmiWindowsCharMap_Click);
            // 
            // cmiOptionsSeparator
            // 
            resources.ApplyResources(this.cmiOptionsSeparator, "cmiOptionsSeparator");
            this.cmiOptionsSeparator.Name = "cmiOptionsSeparator";
            // 
            // cmiAbout
            // 
            resources.ApplyResources(this.cmiAbout, "cmiAbout");
            this.cmiAbout.Name = "cmiAbout";
            this.cmiAbout.Click += new System.EventHandler(this.cmiAbout_Click);
            // 
            // cmiExit
            // 
            resources.ApplyResources(this.cmiExit, "cmiExit");
            this.cmiExit.Name = "cmiExit";
            this.cmiExit.Click += new System.EventHandler(this.cmiExit_Click);
            // 
            // windowFinder
            // 
            resources.ApplyResources(this.windowFinder, "windowFinder");
            this.windowFinder.BackColor = System.Drawing.SystemColors.Control;
            this.windowFinder.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.windowFinder.Name = "windowFinder";
            this.toolTip.SetToolTip(this.windowFinder, resources.GetString("windowFinder.ToolTip"));
            this.windowFinder.ActiveWindowChanged += new System.EventHandler(this.windowFinder_ActiveWindowChanged);
            this.windowFinder.ActiveWindowSelected += new System.EventHandler(this.windowFinder_ActiveWindowSelected);
            // 
            // tmrSearchPopupTimeout
            // 
            this.tmrSearchPopupTimeout.Interval = 500;
            this.tmrSearchPopupTimeout.Tick += new System.EventHandler(this.tmrSearchPopupTimeout_Tick);
            // 
            // MainForm
            // 
            resources.ApplyResources(this, "$this");
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.windowFinder);
            this.Controls.Add(this.btnOptions);
            this.Controls.Add(this.tblFavoriteIndexes);
            this.Controls.Add(this.lblFavorites);
            this.Controls.Add(this.tblFavoriteGlyphs);
            this.Controls.Add(this.lblTargetWindowTitle);
            this.Controls.Add(this.lblTargetWindow);
            this.Controls.Add(this.lblHeader);
            this.Controls.Add(this.txtCharSearch);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
            this.KeyPreview = true;
            this.MaximizeBox = false;
            this.Name = "MainForm";
            this.ShowInTaskbar = false;
            this.toolTip.SetToolTip(this, resources.GetString("$this.ToolTip"));
            this.TopMost = true;
            this.WindowState = System.Windows.Forms.FormWindowState.Minimized;
            this.Activated += new System.EventHandler(this.FormMain_Activated);
            this.Deactivate += new System.EventHandler(this.FormMain_Deactivate);
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormMain_FormClosing);
            this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.FormMain_FormClosed);
            this.Load += new System.EventHandler(this.FormMain_Load);
            this.Shown += new System.EventHandler(this.FormMain_Shown);
            this.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.FormMain_PreviewKeyDown);
            this.Resize += new System.EventHandler(this.FormMain_Resize);
            this.cmsTrayIconMenu.ResumeLayout(false);
            this.tblFavoriteGlyphs.ResumeLayout(false);
            this.tblFavoriteGlyphs.PerformLayout();
            this.tblFavoriteIndexes.ResumeLayout(false);
            this.tblFavoriteIndexes.PerformLayout();
            this.cmsOptions.ResumeLayout(false);
            this.ResumeLayout(false);
            this.PerformLayout();

        }
コード例 #3
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            SingleAssemblyComponentResourceManager resources = new SingleAssemblyComponentResourceManager(typeof(OptionsForm));
            this.chkMinimizeOnFocusLost = new System.Windows.Forms.CheckBox();
            this.chkExitOnClose = new System.Windows.Forms.CheckBox();
            this.chkLaunchOnWindowsStartup = new System.Windows.Forms.CheckBox();
            this.lblInterfaceLanguage = new System.Windows.Forms.Label();
            this.cmbInterfaceLanguage = new System.Windows.Forms.ComboBox();
            this.pnlButtonContainer = new System.Windows.Forms.Panel();
            this.btnOK = new System.Windows.Forms.Button();
            this.pnlButtonSpacer = new System.Windows.Forms.Panel();
            this.btnCancel = new System.Windows.Forms.Button();
            this.pnlBottomLine = new System.Windows.Forms.Panel();
            this.pnlSettingsContainer = new System.Windows.Forms.Panel();
            this.chkShowIconInSystemTray = new System.Windows.Forms.CheckBox();
            this.pnlShortcutSelectorContainer = new System.Windows.Forms.Panel();
            this.pnlSecondaryShortcutSelectorPadding = new System.Windows.Forms.Panel();
            this.kbdSecondaryShortcut = new YuriyGuts.UnicodeKeyboard.UI.KeyboardShortcutEditor();
            this.lblSecondaryShortcut = new System.Windows.Forms.Label();
            this.pnlPrimaryShortcutSelectorPadding = new System.Windows.Forms.Panel();
            this.kbdPrimaryShortcut = new YuriyGuts.UnicodeKeyboard.UI.KeyboardShortcutEditor();
            this.lblPrimaryShortcut = new System.Windows.Forms.Label();
            this.pnlLanguageSelectorContainer = new System.Windows.Forms.Panel();
            this.pnlLanguageSelectorPadding = new System.Windows.Forms.Panel();
            this.pnlButtonContainer.SuspendLayout();
            this.pnlSettingsContainer.SuspendLayout();
            this.pnlShortcutSelectorContainer.SuspendLayout();
            this.pnlSecondaryShortcutSelectorPadding.SuspendLayout();
            this.pnlPrimaryShortcutSelectorPadding.SuspendLayout();
            this.pnlLanguageSelectorContainer.SuspendLayout();
            this.pnlLanguageSelectorPadding.SuspendLayout();
            this.SuspendLayout();
            // 
            // chkMinimizeOnFocusLost
            // 
            resources.ApplyResources(this.chkMinimizeOnFocusLost, "chkMinimizeOnFocusLost");
            this.chkMinimizeOnFocusLost.Name = "chkMinimizeOnFocusLost";
            this.chkMinimizeOnFocusLost.UseVisualStyleBackColor = true;
            // 
            // chkExitOnClose
            // 
            resources.ApplyResources(this.chkExitOnClose, "chkExitOnClose");
            this.chkExitOnClose.Name = "chkExitOnClose";
            this.chkExitOnClose.UseVisualStyleBackColor = true;
            // 
            // chkLaunchOnWindowsStartup
            // 
            resources.ApplyResources(this.chkLaunchOnWindowsStartup, "chkLaunchOnWindowsStartup");
            this.chkLaunchOnWindowsStartup.Name = "chkLaunchOnWindowsStartup";
            this.chkLaunchOnWindowsStartup.UseVisualStyleBackColor = true;
            // 
            // lblInterfaceLanguage
            // 
            resources.ApplyResources(this.lblInterfaceLanguage, "lblInterfaceLanguage");
            this.lblInterfaceLanguage.Name = "lblInterfaceLanguage";
            // 
            // cmbInterfaceLanguage
            // 
            resources.ApplyResources(this.cmbInterfaceLanguage, "cmbInterfaceLanguage");
            this.cmbInterfaceLanguage.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cmbInterfaceLanguage.FormattingEnabled = true;
            this.cmbInterfaceLanguage.Name = "cmbInterfaceLanguage";
            // 
            // pnlButtonContainer
            // 
            this.pnlButtonContainer.Controls.Add(this.btnOK);
            this.pnlButtonContainer.Controls.Add(this.pnlButtonSpacer);
            this.pnlButtonContainer.Controls.Add(this.btnCancel);
            resources.ApplyResources(this.pnlButtonContainer, "pnlButtonContainer");
            this.pnlButtonContainer.Name = "pnlButtonContainer";
            // 
            // btnOK
            // 
            resources.ApplyResources(this.btnOK, "btnOK");
            this.btnOK.Name = "btnOK";
            this.btnOK.UseVisualStyleBackColor = true;
            this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
            // 
            // pnlButtonSpacer
            // 
            resources.ApplyResources(this.pnlButtonSpacer, "pnlButtonSpacer");
            this.pnlButtonSpacer.Name = "pnlButtonSpacer";
            // 
            // btnCancel
            // 
            resources.ApplyResources(this.btnCancel, "btnCancel");
            this.btnCancel.Name = "btnCancel";
            this.btnCancel.UseVisualStyleBackColor = true;
            this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
            // 
            // pnlBottomLine
            // 
            this.pnlBottomLine.BackColor = System.Drawing.Color.LightSteelBlue;
            resources.ApplyResources(this.pnlBottomLine, "pnlBottomLine");
            this.pnlBottomLine.Name = "pnlBottomLine";
            // 
            // pnlSettingsContainer
            // 
            this.pnlSettingsContainer.BackColor = System.Drawing.SystemColors.Control;
            this.pnlSettingsContainer.Controls.Add(this.chkLaunchOnWindowsStartup);
            this.pnlSettingsContainer.Controls.Add(this.chkExitOnClose);
            this.pnlSettingsContainer.Controls.Add(this.chkMinimizeOnFocusLost);
            this.pnlSettingsContainer.Controls.Add(this.chkShowIconInSystemTray);
            this.pnlSettingsContainer.Controls.Add(this.pnlShortcutSelectorContainer);
            this.pnlSettingsContainer.Controls.Add(this.pnlLanguageSelectorContainer);
            resources.ApplyResources(this.pnlSettingsContainer, "pnlSettingsContainer");
            this.pnlSettingsContainer.Name = "pnlSettingsContainer";
            // 
            // chkShowIconInSystemTray
            // 
            resources.ApplyResources(this.chkShowIconInSystemTray, "chkShowIconInSystemTray");
            this.chkShowIconInSystemTray.Name = "chkShowIconInSystemTray";
            this.chkShowIconInSystemTray.UseVisualStyleBackColor = true;
            // 
            // pnlShortcutSelectorContainer
            // 
            this.pnlShortcutSelectorContainer.Controls.Add(this.pnlSecondaryShortcutSelectorPadding);
            this.pnlShortcutSelectorContainer.Controls.Add(this.lblSecondaryShortcut);
            this.pnlShortcutSelectorContainer.Controls.Add(this.pnlPrimaryShortcutSelectorPadding);
            this.pnlShortcutSelectorContainer.Controls.Add(this.lblPrimaryShortcut);
            resources.ApplyResources(this.pnlShortcutSelectorContainer, "pnlShortcutSelectorContainer");
            this.pnlShortcutSelectorContainer.Name = "pnlShortcutSelectorContainer";
            // 
            // pnlSecondaryShortcutSelectorPadding
            // 
            this.pnlSecondaryShortcutSelectorPadding.Controls.Add(this.kbdSecondaryShortcut);
            resources.ApplyResources(this.pnlSecondaryShortcutSelectorPadding, "pnlSecondaryShortcutSelectorPadding");
            this.pnlSecondaryShortcutSelectorPadding.Name = "pnlSecondaryShortcutSelectorPadding";
            // 
            // kbdSecondaryShortcut
            // 
            this.kbdSecondaryShortcut.BackColor = System.Drawing.SystemColors.Window;
            this.kbdSecondaryShortcut.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            resources.ApplyResources(this.kbdSecondaryShortcut, "kbdSecondaryShortcut");
            this.kbdSecondaryShortcut.InvalidShortcutColor = System.Drawing.Color.Red;
            this.kbdSecondaryShortcut.Name = "kbdSecondaryShortcut";
            this.kbdSecondaryShortcut.ReadOnly = true;
            this.kbdSecondaryShortcut.ValidShortcutColor = System.Drawing.Color.Green;
            this.kbdSecondaryShortcut.ValidateShortcut += new System.EventHandler<YuriyGuts.UnicodeKeyboard.UI.KeyboardShortcutValidationEventArgs>(this.kbdSecondaryShortcut_ValidateShortcut);
            // 
            // lblSecondaryShortcut
            // 
            resources.ApplyResources(this.lblSecondaryShortcut, "lblSecondaryShortcut");
            this.lblSecondaryShortcut.Name = "lblSecondaryShortcut";
            // 
            // pnlPrimaryShortcutSelectorPadding
            // 
            this.pnlPrimaryShortcutSelectorPadding.Controls.Add(this.kbdPrimaryShortcut);
            resources.ApplyResources(this.pnlPrimaryShortcutSelectorPadding, "pnlPrimaryShortcutSelectorPadding");
            this.pnlPrimaryShortcutSelectorPadding.Name = "pnlPrimaryShortcutSelectorPadding";
            // 
            // kbdPrimaryShortcut
            // 
            this.kbdPrimaryShortcut.BackColor = System.Drawing.SystemColors.Window;
            this.kbdPrimaryShortcut.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            resources.ApplyResources(this.kbdPrimaryShortcut, "kbdPrimaryShortcut");
            this.kbdPrimaryShortcut.InvalidShortcutColor = System.Drawing.Color.Red;
            this.kbdPrimaryShortcut.Name = "kbdPrimaryShortcut";
            this.kbdPrimaryShortcut.ReadOnly = true;
            this.kbdPrimaryShortcut.ValidShortcutColor = System.Drawing.Color.Green;
            this.kbdPrimaryShortcut.ValidateShortcut += new System.EventHandler<YuriyGuts.UnicodeKeyboard.UI.KeyboardShortcutValidationEventArgs>(this.kbdPrimaryShortcut_ValidateShortcut);
            // 
            // lblPrimaryShortcut
            // 
            resources.ApplyResources(this.lblPrimaryShortcut, "lblPrimaryShortcut");
            this.lblPrimaryShortcut.Name = "lblPrimaryShortcut";
            // 
            // pnlLanguageSelectorContainer
            // 
            this.pnlLanguageSelectorContainer.Controls.Add(this.pnlLanguageSelectorPadding);
            this.pnlLanguageSelectorContainer.Controls.Add(this.lblInterfaceLanguage);
            resources.ApplyResources(this.pnlLanguageSelectorContainer, "pnlLanguageSelectorContainer");
            this.pnlLanguageSelectorContainer.Name = "pnlLanguageSelectorContainer";
            // 
            // pnlLanguageSelectorPadding
            // 
            this.pnlLanguageSelectorPadding.Controls.Add(this.cmbInterfaceLanguage);
            resources.ApplyResources(this.pnlLanguageSelectorPadding, "pnlLanguageSelectorPadding");
            this.pnlLanguageSelectorPadding.Name = "pnlLanguageSelectorPadding";
            // 
            // OptionsForm
            // 
            resources.ApplyResources(this, "$this");
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.pnlSettingsContainer);
            this.Controls.Add(this.pnlBottomLine);
            this.Controls.Add(this.pnlButtonContainer);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "OptionsForm";
            this.ShowInTaskbar = false;
            this.pnlButtonContainer.ResumeLayout(false);
            this.pnlSettingsContainer.ResumeLayout(false);
            this.pnlSettingsContainer.PerformLayout();
            this.pnlShortcutSelectorContainer.ResumeLayout(false);
            this.pnlShortcutSelectorContainer.PerformLayout();
            this.pnlSecondaryShortcutSelectorPadding.ResumeLayout(false);
            this.pnlSecondaryShortcutSelectorPadding.PerformLayout();
            this.pnlPrimaryShortcutSelectorPadding.ResumeLayout(false);
            this.pnlPrimaryShortcutSelectorPadding.PerformLayout();
            this.pnlLanguageSelectorContainer.ResumeLayout(false);
            this.pnlLanguageSelectorContainer.PerformLayout();
            this.pnlLanguageSelectorPadding.ResumeLayout(false);
            this.ResumeLayout(false);

        }
コード例 #4
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            SingleAssemblyComponentResourceManager resources = new SingleAssemblyComponentResourceManager(typeof(AboutForm));
            this.lblApplicationName = new System.Windows.Forms.Label();
            this.lblVersion = new System.Windows.Forms.Label();
            this.lblCopyright = new System.Windows.Forms.Label();
            this.lblThirdPartyLibraryNotice = new System.Windows.Forms.Label();
            this.lnkUserActivityMonitor = new System.Windows.Forms.LinkLabel();
            this.pnlLine = new System.Windows.Forms.Panel();
            this.lnkSilkIcons = new System.Windows.Forms.LinkLabel();
            this.lnkUnicodeCharacterDatabase = new System.Windows.Forms.LinkLabel();
            this.SuspendLayout();
            // 
            // lblApplicationName
            // 
            resources.ApplyResources(this.lblApplicationName, "lblApplicationName");
            this.lblApplicationName.ForeColor = System.Drawing.Color.SteelBlue;
            this.lblApplicationName.Name = "lblApplicationName";
            // 
            // lblVersion
            // 
            resources.ApplyResources(this.lblVersion, "lblVersion");
            this.lblVersion.ForeColor = System.Drawing.Color.Black;
            this.lblVersion.Name = "lblVersion";
            // 
            // lblCopyright
            // 
            resources.ApplyResources(this.lblCopyright, "lblCopyright");
            this.lblCopyright.ForeColor = System.Drawing.Color.Black;
            this.lblCopyright.Name = "lblCopyright";
            // 
            // lblThirdPartyLibraryNotice
            // 
            resources.ApplyResources(this.lblThirdPartyLibraryNotice, "lblThirdPartyLibraryNotice");
            this.lblThirdPartyLibraryNotice.ForeColor = System.Drawing.Color.Black;
            this.lblThirdPartyLibraryNotice.Name = "lblThirdPartyLibraryNotice";
            // 
            // lnkUserActivityMonitor
            // 
            this.lnkUserActivityMonitor.ActiveLinkColor = System.Drawing.Color.Blue;
            resources.ApplyResources(this.lnkUserActivityMonitor, "lnkUserActivityMonitor");
            this.lnkUserActivityMonitor.LinkColor = System.Drawing.Color.SteelBlue;
            this.lnkUserActivityMonitor.Name = "lnkUserActivityMonitor";
            this.lnkUserActivityMonitor.TabStop = true;
            this.lnkUserActivityMonitor.VisitedLinkColor = System.Drawing.Color.SteelBlue;
            this.lnkUserActivityMonitor.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lnkUserActivityMonitor_LinkClicked);
            // 
            // pnlLine
            // 
            this.pnlLine.BackColor = System.Drawing.Color.LightSteelBlue;
            resources.ApplyResources(this.pnlLine, "pnlLine");
            this.pnlLine.Name = "pnlLine";
            // 
            // lnkSilkIcons
            // 
            this.lnkSilkIcons.ActiveLinkColor = System.Drawing.Color.Blue;
            resources.ApplyResources(this.lnkSilkIcons, "lnkSilkIcons");
            this.lnkSilkIcons.LinkColor = System.Drawing.Color.SteelBlue;
            this.lnkSilkIcons.Name = "lnkSilkIcons";
            this.lnkSilkIcons.TabStop = true;
            this.lnkSilkIcons.VisitedLinkColor = System.Drawing.Color.SteelBlue;
            this.lnkSilkIcons.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lnkSilkIcons_LinkClicked);
            // 
            // lnkUnicodeCharacterDatabase
            // 
            this.lnkUnicodeCharacterDatabase.ActiveLinkColor = System.Drawing.Color.Blue;
            resources.ApplyResources(this.lnkUnicodeCharacterDatabase, "lnkUnicodeCharacterDatabase");
            this.lnkUnicodeCharacterDatabase.LinkColor = System.Drawing.Color.SteelBlue;
            this.lnkUnicodeCharacterDatabase.Name = "lnkUnicodeCharacterDatabase";
            this.lnkUnicodeCharacterDatabase.TabStop = true;
            this.lnkUnicodeCharacterDatabase.VisitedLinkColor = System.Drawing.Color.SteelBlue;
            this.lnkUnicodeCharacterDatabase.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lnkUnicodeCharacterDatabase_LinkClicked);
            // 
            // AboutForm
            // 
            resources.ApplyResources(this, "$this");
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.lnkUnicodeCharacterDatabase);
            this.Controls.Add(this.lnkSilkIcons);
            this.Controls.Add(this.lnkUserActivityMonitor);
            this.Controls.Add(this.lblThirdPartyLibraryNotice);
            this.Controls.Add(this.pnlLine);
            this.Controls.Add(this.lblCopyright);
            this.Controls.Add(this.lblVersion);
            this.Controls.Add(this.lblApplicationName);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "AboutForm";
            this.ShowIcon = false;
            this.ShowInTaskbar = 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()
        {
            SingleAssemblyComponentResourceManager resources = new SingleAssemblyComponentResourceManager(typeof(AddToFavoritesForm));
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
            this.pnlBottom = new System.Windows.Forms.Panel();
            this.btnOK = new System.Windows.Forms.Button();
            this.btnCancel = new System.Windows.Forms.Button();
            this.pnlTop = new System.Windows.Forms.Panel();
            this.lblUsageHint = new System.Windows.Forms.Label();
            this.lblCharacterName = new System.Windows.Forms.Label();
            this.lblCharacterPreview = new System.Windows.Forms.Label();
            this.pnlMiddle = new System.Windows.Forms.Panel();
            this.gridFavorites = new System.Windows.Forms.DataGridView();
            this.colIndex = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.colCharacterCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.colCharacterGlyph = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.colCharacterName = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.pnlBottom.SuspendLayout();
            this.pnlTop.SuspendLayout();
            this.pnlMiddle.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridFavorites)).BeginInit();
            this.SuspendLayout();
            // 
            // pnlBottom
            // 
            resources.ApplyResources(this.pnlBottom, "pnlBottom");
            this.pnlBottom.Controls.Add(this.btnOK);
            this.pnlBottom.Controls.Add(this.btnCancel);
            this.pnlBottom.Name = "pnlBottom";
            // 
            // btnOK
            // 
            resources.ApplyResources(this.btnOK, "btnOK");
            this.btnOK.Name = "btnOK";
            this.btnOK.UseVisualStyleBackColor = true;
            this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
            // 
            // btnCancel
            // 
            resources.ApplyResources(this.btnCancel, "btnCancel");
            this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            this.btnCancel.Name = "btnCancel";
            this.btnCancel.UseVisualStyleBackColor = true;
            this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
            // 
            // pnlTop
            // 
            resources.ApplyResources(this.pnlTop, "pnlTop");
            this.pnlTop.Controls.Add(this.lblUsageHint);
            this.pnlTop.Controls.Add(this.lblCharacterName);
            this.pnlTop.Controls.Add(this.lblCharacterPreview);
            this.pnlTop.Name = "pnlTop";
            // 
            // lblUsageHint
            // 
            resources.ApplyResources(this.lblUsageHint, "lblUsageHint");
            this.lblUsageHint.Name = "lblUsageHint";
            // 
            // lblCharacterName
            // 
            resources.ApplyResources(this.lblCharacterName, "lblCharacterName");
            this.lblCharacterName.AutoEllipsis = true;
            this.lblCharacterName.Name = "lblCharacterName";
            // 
            // lblCharacterPreview
            // 
            resources.ApplyResources(this.lblCharacterPreview, "lblCharacterPreview");
            this.lblCharacterPreview.BackColor = System.Drawing.Color.WhiteSmoke;
            this.lblCharacterPreview.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.lblCharacterPreview.Name = "lblCharacterPreview";
            // 
            // pnlMiddle
            // 
            resources.ApplyResources(this.pnlMiddle, "pnlMiddle");
            this.pnlMiddle.Controls.Add(this.gridFavorites);
            this.pnlMiddle.Name = "pnlMiddle";
            // 
            // gridFavorites
            // 
            resources.ApplyResources(this.gridFavorites, "gridFavorites");
            this.gridFavorites.AllowUserToAddRows = false;
            this.gridFavorites.AllowUserToDeleteRows = false;
            this.gridFavorites.AllowUserToResizeColumns = false;
            this.gridFavorites.AllowUserToResizeRows = false;
            this.gridFavorites.BackgroundColor = System.Drawing.SystemColors.Window;
            this.gridFavorites.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.gridFavorites.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.colIndex,
            this.colCharacterCode,
            this.colCharacterGlyph,
            this.colCharacterName});
            this.gridFavorites.Cursor = System.Windows.Forms.Cursors.Hand;
            dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle4.BackColor = System.Drawing.SystemColors.Window;
            dataGridViewCellStyle4.Font = new System.Drawing.Font("Tahoma", 8.25F);
            dataGridViewCellStyle4.ForeColor = System.Drawing.SystemColors.ControlText;
            dataGridViewCellStyle4.SelectionBackColor = System.Drawing.SystemColors.Window;
            dataGridViewCellStyle4.SelectionForeColor = System.Drawing.SystemColors.ControlText;
            dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
            this.gridFavorites.DefaultCellStyle = dataGridViewCellStyle4;
            this.gridFavorites.GridColor = System.Drawing.Color.WhiteSmoke;
            this.gridFavorites.MultiSelect = false;
            this.gridFavorites.Name = "gridFavorites";
            this.gridFavorites.ReadOnly = true;
            this.gridFavorites.RowHeadersVisible = false;
            this.gridFavorites.RowTemplate.Height = 30;
            this.gridFavorites.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
            this.gridFavorites.CellMouseEnter += new System.Windows.Forms.DataGridViewCellEventHandler(this.gridFavorites_CellMouseEnter);
            this.gridFavorites.CellMouseLeave += new System.Windows.Forms.DataGridViewCellEventHandler(this.gridFavorites_CellMouseLeave);
            this.gridFavorites.SelectionChanged += new System.EventHandler(this.gridFavorites_SelectionChanged);
            // 
            // colIndex
            // 
            this.colIndex.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
            dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
            dataGridViewCellStyle1.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
            this.colIndex.DefaultCellStyle = dataGridViewCellStyle1;
            resources.ApplyResources(this.colIndex, "colIndex");
            this.colIndex.Name = "colIndex";
            this.colIndex.ReadOnly = true;
            this.colIndex.Resizable = System.Windows.Forms.DataGridViewTriState.False;
            this.colIndex.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
            // 
            // colCharacterCode
            // 
            this.colCharacterCode.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
            dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
            this.colCharacterCode.DefaultCellStyle = dataGridViewCellStyle2;
            resources.ApplyResources(this.colCharacterCode, "colCharacterCode");
            this.colCharacterCode.Name = "colCharacterCode";
            this.colCharacterCode.ReadOnly = true;
            this.colCharacterCode.Resizable = System.Windows.Forms.DataGridViewTriState.False;
            this.colCharacterCode.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
            // 
            // colCharacterGlyph
            // 
            this.colCharacterGlyph.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
            dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
            this.colCharacterGlyph.DefaultCellStyle = dataGridViewCellStyle3;
            resources.ApplyResources(this.colCharacterGlyph, "colCharacterGlyph");
            this.colCharacterGlyph.Name = "colCharacterGlyph";
            this.colCharacterGlyph.ReadOnly = true;
            this.colCharacterGlyph.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
            // 
            // colCharacterName
            // 
            this.colCharacterName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
            resources.ApplyResources(this.colCharacterName, "colCharacterName");
            this.colCharacterName.Name = "colCharacterName";
            this.colCharacterName.ReadOnly = true;
            this.colCharacterName.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
            // 
            // AddToFavoritesForm
            // 
            this.AcceptButton = this.btnOK;
            resources.ApplyResources(this, "$this");
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.CancelButton = this.btnCancel;
            this.Controls.Add(this.pnlMiddle);
            this.Controls.Add(this.pnlTop);
            this.Controls.Add(this.pnlBottom);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
            this.Name = "AddToFavoritesForm";
            this.ShowIcon = false;
            this.ShowInTaskbar = false;
            this.Load += new System.EventHandler(this.FormAddToFavorites_Load);
            this.pnlBottom.ResumeLayout(false);
            this.pnlTop.ResumeLayout(false);
            this.pnlTop.PerformLayout();
            this.pnlMiddle.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gridFavorites)).EndInit();
            this.ResumeLayout(false);

        }