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 257if (ActionPanel._dropDownActive) 276ActionPanel.Invalidate(new Rectangle(EditRegionLocation, EditRegionSize), false); 311if (!ActionPanel._dropDownActive) 337_dropDownHolder = new DropDownHolder(hostedControl, ActionPanel, borderColor, ActionPanel.Font, this); 339if (ActionPanel.RightToLeft != RightToLeft.Yes) 343Point editorLocation = ActionPanel.PointToScreen(EditRegionLocation); 344Rectangle rectScreen = Screen.FromRectangle(ActionPanel.RectangleToScreen(editorBounds)).WorkingArea; 363_dropDownHolder.RightToLeft = ActionPanel.RightToLeft; 367Point editorLocation = ActionPanel.PointToScreen(EditRegionLocation); 368Rectangle rectScreen = Screen.FromRectangle(ActionPanel.RectangleToScreen(editorBounds)).WorkingArea; 386ActionPanel.InMethodInvoke = true; 387ActionPanel.SetDropDownActive(true); 395ActionPanel.SetDropDownActive(false); 396ActionPanel.InMethodInvoke = false; 410ShowDropDown(control, ActionPanel.BorderColor); 448_parent.ActionPanel.SetDropDownActive(true); 454_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;