1 write to ActionPanel
System.Windows.Forms.Design (1)
System\ComponentModel\Design\DesignerActionPanel.Line.cs (1)
18ActionPanel = actionPanel.OrThrowIfNull();
50 references to ActionPanel
System.Windows.Forms.Design (50)
System\ComponentModel\Design\DesignerActionPanel.CheckBoxPropertyLine.cs (1)
24ForeColor = ActionPanel.LabelForeColor
System\ComponentModel\Design\DesignerActionPanel.EditorPropertyLine.cs (20)
46ActionPanel.ShowError(string.Format(SR.DesignerActionPanel_ErrorActivatingDropDown, ex.Message)); 55Font = ActionPanel.Font 260if (ActionPanel._dropDownActive) 279ActionPanel.Invalidate(new Rectangle(EditRegionLocation, EditRegionSize), false); 314if (!ActionPanel._dropDownActive) 340_dropDownHolder = new DropDownHolder(hostedControl, ActionPanel, borderColor, ActionPanel.Font, this); 342if (ActionPanel.RightToLeft != RightToLeft.Yes) 346Point editorLocation = ActionPanel.PointToScreen(EditRegionLocation); 347Rectangle rectScreen = Screen.FromRectangle(ActionPanel.RectangleToScreen(editorBounds)).WorkingArea; 366_dropDownHolder.RightToLeft = ActionPanel.RightToLeft; 370Point editorLocation = ActionPanel.PointToScreen(EditRegionLocation); 371Rectangle rectScreen = Screen.FromRectangle(ActionPanel.RectangleToScreen(editorBounds)).WorkingArea; 389ActionPanel.InMethodInvoke = true; 390ActionPanel.SetDropDownActive(true); 398ActionPanel.SetDropDownActive(false); 399ActionPanel.InMethodInvoke = false; 413ShowDropDown(control, ActionPanel.BorderColor); 451_parent.ActionPanel.SetDropDownActive(true); 457_parent.ActionPanel.SetDropDownActive(false);
System\ComponentModel\Design\DesignerActionPanel.HeaderLine.cs (1)
16protected override Font GetFont() => new(ActionPanel.Font, FontStyle.Bold);
System\ComponentModel\Design\DesignerActionPanel.MethodLine.cs (7)
21ActiveLinkColor = ActionPanel.ActiveLinkColor, 25LinkColor = ActionPanel.LinkColor, 28VisitedLinkColor = ActionPanel.LinkColor 57Debug.Assert(!ActionPanel.InMethodInvoke, "Nested method invocation"); 58ActionPanel.InMethodInvoke = true; 76ActionPanel.ShowError(string.Format(SR.DesignerActionPanel_ErrorInvokingAction, _methodItem!.DisplayName, Environment.NewLine + ex.Message)); 80ActionPanel.InMethodInvoke = false;
System\ComponentModel\Design\DesignerActionPanel.PanelHeaderLine.cs (12)
26ForeColor = ActionPanel.TitleBarTextColor, 34ForeColor = ActionPanel.TitleBarTextColor, 43ActionPanel.FormActivated += OnFormActivated; 44ActionPanel.FormDeactivate += OnFormDeactivate; 81ActionPanel.Invalidate(); 89ActionPanel.Invalidate(); 94_titleLabel.Font = new Font(ActionPanel.Font, FontStyle.Bold); 95_subtitleLabel.Font = ActionPanel.Font; 100Color backColor = (_formActive || ActionPanel._dropDownActive) ? ActionPanel.TitleBarColor : ActionPanel.TitleBarUnselectedColor; 105using Pen p = new(ActionPanel.BorderColor);
System\ComponentModel\Design\DesignerActionPanel.PropertyLine.cs (3)
39if (_pushingValue || ActionPanel._dropDownActive) 59ActionPanel.ShowError(string.Format(SR.DesignerActionPanel_CouldNotConvertValue, newValue, PropertyDescriptor.PropertyType)); 85ActionPanel.ShowError(string.Format(SR.DesignerActionPanel_ErrorSettingValue, newValue, PropertyDescriptor.Name, e.Message));
System\ComponentModel\Design\DesignerActionPanel.SeparatorLine.cs (1)
28using Pen p = new(ActionPanel.SeparatorColor);
System\ComponentModel\Design\DesignerActionPanel.TextBoxPropertyLine.cs (3)
27ForeColor = ActionPanel.LabelForeColor, 258if (ActionPanel._dropDownActive) 276if (ActionPanel._dropDownActive)
System\ComponentModel\Design\DesignerActionPanel.TextLine.cs (2)
23ForeColor = ActionPanel.LabelForeColor, 60return ActionPanel.Font;