1 write to hotcommands
System.Windows.Forms (1)
winforms\Managed\System\WinForms\PropertyGrid.cs (1)
260hotcommands = new HotCommands(this);
81 references to hotcommands
System.Windows.Forms (81)
winforms\Managed\System\WinForms\PropertyGrid.cs (81)
261hotcommands.SuspendLayout(); 262hotcommands.TabIndex = 3; 263hotcommands.Dock = DockStyle.None; 265hotcommands.Visible = false; 266hotcommands.MouseMove += new MouseEventHandler(this.OnChildMouseMove); 267hotcommands.MouseDown += new MouseEventHandler(this.OnChildMouseDown); 269Controls.AddRange(new Control[] { doccomment, hotcommands, gridView, toolStrip }); 286if (hotcommands != null) { 287hotcommands.ResumeLayout(false); 501return hotcommands.WouldBeVisible; 536return hotcommands.BackColor; 539hotcommands.BackColor = value; 540hotcommands.Label.BackColor = value; 554return hotcommands.ForeColor; 557hotcommands.ForeColor = value; 558hotcommands.Label.ForeColor = value; 572return hotcommands.Label.LinkColor; 575hotcommands.Label.LinkColor = value; 589return hotcommands.Label.ActiveLinkColor; 592hotcommands.Label.ActiveLinkColor = value; 606return hotcommands.Label.DisabledLinkColor; 609hotcommands.Label.DisabledLinkColor = value; 624return hotcommands.BorderColor; 627hotcommands.BorderColor = value; 638return hotcommands.Visible; 654return hotcommands.AllowVisible; 657bool hotcommandsVisible = hotcommands.Visible; 658hotcommands.AllowVisible = value; 660if (hotcommandsVisible != hotcommands.Visible) { 662hotcommands.Invalidate(); 876return hotcommands.AccessibilityObject; 2124bool hotCommandsDisplayed = hotcommands.Visible; 2184hotcommands.SetVerbs(component, verbs); 2187hotcommands.SetVerbs(null, null); 2190if (hotCommandsDisplayed != hotcommands.Visible) { 2283if (hotcommands.Visible) { 2284Point locDoc = hotcommands.Location; 2287return hotcommands; 2312return hotcommands; 2323if (target == doccomment && hotcommands.Visible) 2324high += hotcommands.Size.Height + 2; 2622return hotcommands; 2985if (!toolStrip.Visible && !doccomment.Visible && !hotcommands.Visible) { 3034hcRequestedHeight = hotcommands.Visible ? hotcommands.Size.Height : 0; 3050if (hotcommands.Visible) { 3051hcOptHeight = hotcommands.GetOptimalHeight(Size.Width - cyDivider); 3052if (hotcommands.userSized) { 3053hcRequestedHeight = hotcommands.Size.Height; 3117hotcommands.userSized = false; 3119else if (hcSizeRatio != -1 || hotcommands.userSized) { 3120hcSizeRatio = (hotcommands.Height * 100) / this.Height; 3123hotcommands.SetBounds(0, endSize - height, Size.Width, height); 3124hotcommands.Invalidate(); 3125endSize = hotcommands.Location.Y - cyDivider; 3302if (hotcommands.Visible) { 3303pevent.Graphics.FillRectangle(background, new Rectangle(0, yLast, width, hotcommands.Location.Y - yLast)); 3304yLast += hotcommands.Size.Height; 3751if (hotcommands.Visible && hotcommands.ContainsFocus) { 3778if (hotcommands.Visible) { 3779hotcommands.Select(false); 3810if (hotcommands.Visible) { 3811hotcommands.Select(true); 3819else if (hotcommands.ContainsFocus) { 4159hotcommands.ResetBackColor(); 4163hotcommands.ResetForeColor(); 4167hotcommands.Label.ResetLinkColor(); 4171hotcommands.Label.ResetActiveLinkColor(); 4175hotcommands.Label.ResetDisabledLinkColor(); 4236hotcommands.SetColors(SystemColors.Control, SystemColors.ControlText, SystemColors.ActiveCaption, SystemColors.ActiveCaption, SystemColors.ActiveCaption, SystemColors.ControlDark); 4239hotcommands.SetColors(SystemColors.Control, SystemColors.ControlText, Color.Empty, Color.Empty, Color.Empty, Color.Empty); 4596return hotcommands.ShouldSerializeBackColor(); 4600return hotcommands.ShouldSerializeForeColor(); 4604return hotcommands.Label.ShouldSerializeLinkColor(); 4608return hotcommands.Label.ShouldSerializeActiveLinkColor(); 4612return hotcommands.Label.ShouldSerializeDisabledLinkColor(); 4843if (hotcommands != null && hotcommands.Visible) { 4845this.Controls.Remove(hotcommands); 4846this.Controls.Add(hotcommands);